TeluguTechCoder
TeluguTechCoder
  • 67
  • 30 220
5 SQL Queries You Need to Know for Data Analysis in 2024
-- Create 'film' table
CREATE TABLE film (
film_id INT AUTO_INCREMENT PRIMARY KEY,
title VARCHAR(255) NOT NULL,
description TEXT,
release_year YEAR,
language_id INT NOT NULL,
original_language_id INT DEFAULT NULL,
rental_duration TINYINT UNSIGNED NOT NULL DEFAULT 3,
rental_rate DECIMAL(4,2) NOT NULL DEFAULT 4.99,
length SMALLINT UNSIGNED DEFAULT NULL,
replacement_cost DECIMAL(5,2) NOT NULL DEFAULT 19.99,
rating ENUM('G', 'PG', 'PG-13', 'R', 'NC-17') DEFAULT 'G',
special_features SET('Trailers','Commentaries','Deleted Scenes','Behind the Scenes'),
last_update TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
FOREIGN KEY (language_id) REFERENCES language(language_id),
FOREIGN KEY (original_language_id) REFERENCES language(language_id)
);
-- Create 'inventory' table
CREATE TABLE inventory (
inventory_id INT AUTO_INCREMENT PRIMARY KEY,
film_id INT NOT NULL,
store_id TINYINT UNSIGNED NOT NULL,
last_update TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
FOREIGN KEY (film_id) REFERENCES film(film_id),
FOREIGN KEY (store_id) REFERENCES store(store_id)
);
-- Create 'rental' table
CREATE TABLE rental (
rental_id INT AUTO_INCREMENT PRIMARY KEY,
rental_date DATETIME NOT NULL,
inventory_id INT NOT NULL,
customer_id INT NOT NULL,
return_date DATETIME DEFAULT NULL,
staff_id TINYINT UNSIGNED NOT NULL,
last_update TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
FOREIGN KEY (inventory_id) REFERENCES inventory(inventory_id),
FOREIGN KEY (customer_id) REFERENCES customer(customer_id),
FOREIGN KEY (staff_id) REFERENCES staff(staff_id)
);
-- Create 'customer' table
CREATE TABLE customer (
customer_id INT AUTO_INCREMENT PRIMARY KEY,
store_id TINYINT UNSIGNED NOT NULL,
first_name VARCHAR(45) NOT NULL,
last_name VARCHAR(45) NOT NULL,
email VARCHAR(50) DEFAULT NULL,
address_id INT NOT NULL,
active BOOLEAN NOT NULL DEFAULT TRUE,
create_date DATETIME NOT NULL,
last_update TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
FOREIGN KEY (address_id) REFERENCES address(address_id),
FOREIGN KEY (store_id) REFERENCES store(store_id)
);
-- Create 'payment' table
CREATE TABLE payment (
payment_id INT AUTO_INCREMENT PRIMARY KEY,
customer_id INT NOT NULL,
staff_id TINYINT UNSIGNED NOT NULL,
rental_id INT DEFAULT NULL,
amount DECIMAL(5,2) NOT NULL,
payment_date DATETIME NOT NULL,
last_update TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
FOREIGN KEY (customer_id) REFERENCES customer(customer_id),
FOREIGN KEY (staff_id) REFERENCES staff(staff_id),
FOREIGN KEY (rental_id) REFERENCES rental(rental_id)
);
-- Insert top 10 rows into 'film' table
INSERT INTO film (title, description, release_year, language_id, rental_duration, rental_rate, length, replacement_cost, rating, special_features)
VALUES
('The Matrix', 'A hacker discovers the world rebellion.', 1999, 1, 5, 2.99, 136, 19.99, 'R', 'Trailers,Commentaries'),
('Inception', 'A thief who steals corporate secrets through dream-sharing technology.', 2010, 1, 3, 3.99, 148, 24.99, 'PG-13', 'Deleted Scenes,Behind the Scenes'),
('Toy Story', 'A cowboy doll is profoundly threatened by the arrival of a space ranger.', 1995, 2, 7, 1.99, 81, 14.99, 'G', 'Trailers,Commentaries'),
('The Dark Knight', 'Batman faces the Joker in a battle for Gotham\'s soul.', 2008, 1, 3, 3.49, 152, 19.99, 'PG-13', 'Commentaries');
-- Insert top 10 rows into 'inventory' table
INSERT INTO inventory (film_id, store_id)
VALUES
(1, 1), -- The Matrix in store 1
(2, 1), -- Inception in store 1
(3, 2), -- Toy Story in store 2
(4, 1); -- The Dark Knight in store 1
-- Insert top 10 rows into 'customer' table
INSERT INTO customer (store_id, first_name, last_name, email, address_id, active, create_date)
VALUES
(1, 'John', 'Doe', 'john.doe@example.com', 1, TRUE, NOW()),
(2, 'Jane', 'Smith', 'jane.smith@example.com', 2, TRUE, NOW()),
(1, 'Mike', 'Johnson', 'mike.johnson@example.com', 3, TRUE, NOW());
-- Insert top 10 rows into 'rental' table
INSERT INTO rental (rental_date, inventory_id, customer_id, staff_id, return_date)
VALUES
(NOW(), 1, 1, 1, NULL), -- John Doe rented The Matrix
(NOW(), 2, 1, 1, NULL), -- John Doe rented Inception
(NOW(), 3, 2, 2, NULL), -- Jane Smith rented Toy Story
(NOW(), 4, 3, 1, NULL); -- Mike Johnson rented The Dark Knight
-- Insert top 10 rows into 'payment' table
INSERT INTO payment (customer_id, staff_id, rental_id, amount, payment_date)
VALUES
(1, 1, 1, 4.99, NOW()), -- Payment by John Doe for The Matrix rental
(1, 1, 2, 5.99, NOW()), -- Payment by John Doe for Inception rental
(2, 2, 3, 3.99, NOW()), -- Payment by Jane Smith for Toy Story rental
(3, 1, 4, 4.49, NOW()); -- Payment by Mike Johnson for The Dark Knight rental
Tags:
sql for data science,
sql queries for data analysis
Переглядів: 53

Відео

For Loop in Python Explained with Examples | Python Full Course in Telugu [Part 16]
Переглядів 374 години тому
For Loop in Python Explained with Examples | Iterating Through Lists, Strings & Range in Telugu In this video, you'll learn how to use the for loop in Python, explained with practical examples in Telugu. We'll cover three key examples: iterating through a list of numbers, looping through characters in a string, and using the range() function in a for loop. Watch now to understand how to efficie...
SQL in Telugu - How to create an ER Diagram in SQL | Sakila Database
Переглядів 10012 годин тому
In this video, we’ll walk you through the process of creating an ER (Entity-Relationship) diagram for the Sakila database using SQL. Whether you’re a beginner or looking to refine your database design skills, this tutorial will provide you with the essential knowledge you need. What You'll Learn: Understanding ER Diagrams: We start by defining what an ER diagram is and its importance in databas...
Mastering the SQL Interview: Key Questions You Must Prepare For
Переглядів 12016 годин тому
SQL Real time Interview Questions: Difference between Union and Union all Find AGE of employees based on their DOB, Find employee names end with ‘kumar’ Find employee names where second letter is ‘a’ These questions will help you strengthen your knowledge and ace your interview. We'll go over key concepts such as: SQL Joins and their types Aggregate functions (SUM, COUNT, AVG, etc.) Normalizati...
#15 Python full course in Telugu | Want to MASTER Python Conditional Statements? Watch This NOW!
Переглядів 4521 годину тому
Python Conditional Statements in Telugu: In this video, you'll learn about all types of conditional statements in Python, including if, else, elif, and nested conditions, explained with practical examples in Telugu. Watch now to master conditional statements in Python with clear explanations in Telugu! #pythontelugu #python #telugutechcoder ➤ Join our Facebook group: groups/2067463...
#14 Python full course in Telugu | I mastered Python Bitwise Operators
Переглядів 43День тому
Python full course in Telugu: In this video, learn about bitwise operators in Python, including AND, OR, XOR, NOT, and shift operations. We'll explain how they work on the binary representation of numbers with simple examples. Perfect for beginners looking to understand bitwise operations in Python! ➤ Join our Facebook group: groups/206746378741662 ➤ Join our WhatsApp group: chat.w...
#13 Python full course in Telugu | How to calculate binary code of a number?
Переглядів 39День тому
Python full course in Telugu: In this video, you'll learn how to calculate binary code of a number. ➤ Join our Facebook group: groups/206746378741662 ➤ Join our WhatsApp group: chat.whatsapp.com/JXrRh9IX0GuC4xZgEovbuu ➤ Do you want to become a Data Analyst? That's what this channel is all about! My goal is to help you learn everything you need in order to start your career or even ...
#12 Python full course in Telugu : Mastering Python Membership Operators
Переглядів 2914 днів тому
Python full course in Telugu: ➤ Join our Facebook group: groups/206746378741662 ➤ Join our WhatsApp group: chat.whatsapp.com/JXrRh9IX0GuC4xZgEovbuu ➤ Do you want to become a Data Analyst? That's what this channel is all about! My goal is to help you learn everything you need in order to start your career or even switch your career into Data Analytics. Be sure to subscribe to not mi...
#11 Python full course in Telugu | Identity Operators Are About to Get a Whole Lot Easier!
Переглядів 1714 днів тому
Python full course in Telugu ➤ Join our Facebook group: groups/206746378741662 ➤ Join our WhatsApp group: chat.whatsapp.com/JXrRh9IX0GuC4xZgEovbuu ➤ Do you want to become a Data Analyst? That's what this channel is all about! My goal is to help you learn everything you need in order to start your career or even switch your career into Data Analytics. Be sure to subscribe to not mis...
#10 Python Assignment Operators explained with examples
Переглядів 3814 днів тому
Python full course in Telugu: ➤ Join our Facebook group: groups/206746378741662 ➤ Join our WhatsApp group: chat.whatsapp.com/JXrRh9IX0GuC4xZgEovbuu ➤ Do you want to become a Data Analyst? That's what this channel is all about! My goal is to help you learn everything you need in order to start your career or even switch your career into Data Analytics. Be sure to subscribe to not mi...
#9 Python full course in Telugu | Python Logical Operators Explained with Real-Time Examples
Переглядів 3214 днів тому
Python full course in Telugu: Learn how to use logical operators in Python with this easy-to-understand tutorial in Telugu! We’ll walk through real-time examples of AND, OR, and NOT operators, and show how to use them in conditional statements. ➤ Join our Facebook group: groups/206746378741662 ➤ Join our WhatsApp group: chat.whatsapp.com/JXrRh9IX0GuC4xZgEovbuu ➤ Do you want to beco...
#8 Python full course in Telugu | I Mastered Python Comparison Operators and You Can Too!
Переглядів 1914 днів тому
Python full course in Telugu: Learn how to use comparison operators in Python with this beginner-friendly tutorial. Understand key operators to perform conditional checks in your Python programs #pythontelugu #pythontutorialtelugu #python #telugutechcoder ➤ Join our Facebook group: groups/206746378741662 ➤ Join our WhatsApp group: chat.whatsapp.com/JXrRh9IX0GuC4xZgEovbuu ➤ Do you w...
#7 Python full course in Telugu | Types of Operators in Python | Arithmetic Operators explained
Переглядів 3121 день тому
#7 Python full course in Telugu | Types of Operators in Python | Arithmetic Operators explained
#6 Python full course in Telugu | Python Practice Questions| Top Coding Challenges
Переглядів 9221 день тому
#6 Python full course in Telugu | Python Practice Questions| Top Coding Challenges
#5 Python full course in Telugu | Python EXPERT Reveals Typecasting Secrets You Never Knew
Переглядів 8221 день тому
#5 Python full course in Telugu | Python EXPERT Reveals Typecasting Secrets You Never Knew
#3 Python full course in Telugu | Rules Every Beginner Should Know About Variables in Python!
Переглядів 11121 день тому
#3 Python full course in Telugu | Rules Every Beginner Should Know About Variables in Python!
#2 Python full course in Telugu | How to Install PyCharm IDE on Windows 11
Переглядів 14828 днів тому
#2 Python full course in Telugu | How to Install PyCharm IDE on Windows 11
#4 Python full course in Telugu | MASTER Python Data Types and User Input in 2024
Переглядів 5528 днів тому
#4 Python full course in Telugu | MASTER Python Data Types and User Input in 2024
#1 Python full course in Telugu | The EASY way to Install Python on Windows 11 in 2024
Переглядів 14328 днів тому
#1 Python full course in Telugu | The EASY way to Install Python on Windows 11 in 2024
MySQL in Telugu - Replace Function in SQL || SQL Functions Tutorial
Переглядів 1655 місяців тому
MySQL in Telugu - Replace Function in SQL || SQL Functions Tutorial
SQL Query - Find Employees with the Same Salary | SQL Tutorials in Telugu
Переглядів 1539 місяців тому
SQL Query - Find Employees with the Same Salary | SQL Tutorials in Telugu
SQL in Telugu - ADD and DROP Constraints (primary key, check, not null ) using ALTER TABLE command.
Переглядів 16510 місяців тому
SQL in Telugu - ADD and DROP Constraints (primary key, check, not null ) using ALTER TABLE command.
MySQL in Telugu - insert into select
Переглядів 10810 місяців тому
MySQL in Telugu - insert into select
MySQL in Telugu - concat() and concat_ws() in SQl with examples
Переглядів 42110 місяців тому
MySQL in Telugu - concat() and concat_ws() in SQl with examples
Power BI Telugu - Format Function in DAX | Extract Year, Month, Day from Date | Telugu Tech Coder
Переглядів 59Рік тому
Power BI Telugu - Format Function in DAX | Extract Year, Month, Day from Date | Telugu Tech Coder
Power BI in Telugu - Calendar and CalendarAuto in DAX | Telugu Tech Coder
Переглядів 89Рік тому
Power BI in Telugu - Calendar and CalendarAuto in DAX | Telugu Tech Coder
Power BI Telugu - DAX calculation real time example using SUMX | Power BI DAX calculation
Переглядів 73Рік тому
Power BI Telugu - DAX calculation real time example using SUMX | Power BI DAX calculation
SQL - How to find the version of MySQL through a query ? @TeluguTechCoder
Переглядів 107Рік тому
SQL - How to find the version of MySQL through a query ? @TeluguTechCoder
MySQL in Telugu - How to change the order of columns using the Alter table statement?
Переглядів 176Рік тому
MySQL in Telugu - How to change the order of columns using the Alter table statement?
SQL in Telugu - Correlated Sub queries in Sql || in Detail explanation with example
Переглядів 3,1 тис.Рік тому
SQL in Telugu - Correlated Sub queries in Sql || in Detail explanation with example

КОМЕНТАРІ

  • @bhanuprakash-ob8uq
    @bhanuprakash-ob8uq 9 днів тому

    Superb explanation

  • @hemanth1010
    @hemanth1010 18 днів тому

    Easy to understand, thanks

  • @Zphs2016
    @Zphs2016 22 дні тому

    Videos ki 1 by 1 series number ivvandi bro 1 st video nunchi

    • @TeluguTechCoder
      @TeluguTechCoder 22 дні тому

      yes bro, add chesthunna #1 ala number series..

    • @Zphs2016
      @Zphs2016 22 дні тому

      @@TeluguTechCoder only 4 & 5 numbers matrame vunnai bro 1-3 ekkada?

    • @TeluguTechCoder
      @TeluguTechCoder 22 дні тому

      ok, please check out these links #1 ua-cam.com/video/AMZBE4CMAh8/v-deo.html , #2 ua-cam.com/video/FV9Eu0cCmMk/v-deo.html #3 ua-cam.com/video/Uftcd0IFwtA/v-deo.html

  • @bhanuprakash-ob8uq
    @bhanuprakash-ob8uq 23 дні тому

    Very useful, easy ga artham ayyetu explain chesaru...

    • @TeluguTechCoder
      @TeluguTechCoder 23 дні тому

      Thanks for the feedback! please like the video and Subscribe to the channel.

  • @Zphs2016
    @Zphs2016 24 дні тому

    Python Full course videos hide lo vunnai bro please post full list properly

    • @TeluguTechCoder
      @TeluguTechCoder 24 дні тому

      Hi bro, full course videos prepare chesthunna, from tomorrow new videos add avuthayi, please Subscribe and like our videos. Thanks for your comment

  • @sowjiyadhav9877
    @sowjiyadhav9877 26 днів тому

    Thank you, very useful video

  • @575muni5
    @575muni5 Місяць тому

    Nv clarity ga cheppadam ledu

    • @TeluguTechCoder
      @TeluguTechCoder Місяць тому

      Thanks for the comment, inka better ga explain cheyadaniki try chestha...

  • @geethagummala-ym8bl
    @geethagummala-ym8bl 6 місяців тому

    i am subscribed your channel

  • @geethagummala-ym8bl
    @geethagummala-ym8bl 6 місяців тому

    very good explanation mam

  • @krishnasai1507
    @krishnasai1507 7 місяців тому

    can we use like this examples plz check 1.strftime("%Y", published_datetime) BETWEEN '2018' AND '2020' 2.published_datetime LIKE '%2018%' 3.cast(strftime("%Y", published_datetime) AS INTEGER) < 2016 ,

    • @TeluguTechCoder
      @TeluguTechCoder 29 днів тому

      Yes, all three of the examples you provided are valid and can be used in SQL-like queries or when working with datetime data in SQLite or other databases that support the strftime function. Here's a breakdown of each: 1. strftime("%Y", published_datetime) BETWEEN '2018' AND '2020' This will extract the year (as a string) from the published_datetime column and check if it falls between '2018' and '2020'. 2. published_datetime LIKE '%2018%' This query will search the published_datetime for any string that contains '2018'. It is a pattern-matching approach. 3. cast(strftime("%Y", published_datetime) AS INTEGER) < 2016 This will extract the year from published_datetime, cast it as an integer, and check if it's less than 2016.

  • @krishnasai1507
    @krishnasai1507 7 місяців тому

    is this sql lite software

  • @agiledamodharareddy9345
    @agiledamodharareddy9345 7 місяців тому

    Hi madam salary base chesukoni oka video cheyandi madam

  • @rockingrakesh8197
    @rockingrakesh8197 7 місяців тому

    Thank you akka

  • @ChakrapaniKumar-e7f
    @ChakrapaniKumar-e7f 8 місяців тому

    C. Customer ID = O. Order ID Katha..... Why u wrote c. Customer id =O. Customer ID.....? Plz explain it's getting confused

    • @Vabcdefgh
      @Vabcdefgh 8 місяців тому

      In Customers table doesn't have Order_id column so in both table common record was customer _Id that's why she did that What you text that also going to write columns may different but data type should be matched

    • @ChakrapaniKumar-e7f
      @ChakrapaniKumar-e7f 8 місяців тому

      @@Vabcdefgh oh OK I got it... Thanks for replying and making useful videos

  • @jingalalahu
    @jingalalahu 10 місяців тому

    madam please share your contact details

  • @jingalalahu
    @jingalalahu 10 місяців тому

    baga chepparu madam

  • @GrapeWine-u5m
    @GrapeWine-u5m 10 місяців тому

    ER diagram and examples super

  • @GrapeWine-u5m
    @GrapeWine-u5m 10 місяців тому

    SAS tutorial pls... Thanks

  • @saikumarp-s2t
    @saikumarp-s2t 10 місяців тому

    Why it wasn't working sum(abs(sales))

  • @yelugotinaveen1315
    @yelugotinaveen1315 11 місяців тому

    Can u please do videos on PL/SQL.. It's better for us .. Thank you.

  • @Janu104-l1e
    @Janu104-l1e 11 місяців тому

    ORACLE SQL DEVELOPER VIDEOS CHEYANDI

  • @ganeshgoud3936
    @ganeshgoud3936 Рік тому

    Nice

  • @manikantasatyakiran849
    @manikantasatyakiran849 Рік тому

    Plz continue mam

  • @srinu132
    @srinu132 Рік тому

    Please do full course video

  • @satishs-fq4cf
    @satishs-fq4cf Рік тому

    I understand that you would like assistance with querying the "customer" and "orders" tables, similar to the way it was provided for the "mam" scenario. Attaching the data from both tables would be helpful for practicing with scenario-based questions. Could you please provide more details about the specific scenario and the structure of the tables? This information will help me provide you with accurate queries and assistance.

  • @uthpalabitra7855
    @uthpalabitra7855 Рік тому

    Thanks a lot. Daily you are motivating me by your videos. I'm practicing all your videos regularly. expecting advance sql concepts very soon.

  • @bhanuponnapula
    @bhanuponnapula Рік тому

    Can you make a series of complete SQL course playlist so that we can make use of it

  • @uthpalabitra7855
    @uthpalabitra7855 Рік тому

    feeling great in understanding concepts very well by watching your videos. but plz provide the dataset in every video so that we can do practice on each and every topic you are providing. Hope you understand. Thank You

    • @TeluguTechCoder
      @TeluguTechCoder 11 місяців тому

      I will try my best to provide the data set.

  • @borasanthoshkumarborasanth9523

    How to delete duplicate records in table by using distinct

    • @TeluguTechCoder
      @TeluguTechCoder 29 днів тому

      To delete duplicate records in a table using SQL, you cannot directly use the DISTINCT keyword because DISTINCT is used to select unique records rather than delete them. However, you can achieve this by using common SQL strategies such as identifying the duplicate records and then deleting them based on their unique identifier, if available.

  • @kuneharika7304
    @kuneharika7304 Рік тому

    SQL on line lo how to pritice chayeli

    • @TeluguTechCoder
      @TeluguTechCoder Рік тому

      SQLFiddle: Offers an online SQL editor and execution environment. W3Schools: Offers SQL tutorials and a practice environment.

  • @tendupadala5090
    @tendupadala5090 Рік тому

    Madam garu metho okasari matladali sql gurinchi plz

  • @borasanthoshkumarborasanth9523

    Why can't we use procedure inside the function Please reply

    • @TeluguTechCoder
      @TeluguTechCoder Рік тому

      In SQL, procedures and functions are two distinct types of database objects with different purposes and behaviors. While they both allow you to encapsulate logic and perform actions, they have specific use cases and limitations. The reason you can't directly use a procedure inside a function in most database systems is due to the fundamental differences between these two constructs

    • @borasanthoshkumarborasanth9523
      @borasanthoshkumarborasanth9523 Рік тому

      @@TeluguTechCoder thank you

  • @borasanthoshkumarborasanth9523

    Can we create a table by using procedure

    • @TeluguTechCoder
      @TeluguTechCoder Рік тому

      Yes, we can, but the approach might vary depending on the database system you're using. Stored procedures are often used for more complex operations, but creating a table is usually a relatively straightforward task. First, I'll cover the basic concepts then I will make video on stored procedure in SQL.

  • @divya3195
    @divya3195 Рік тому

    SQL ni yala execute cheyali akka

    • @TeluguTechCoder
      @TeluguTechCoder Рік тому

      Query select chesukoni, execute button ni click cheyali

  • @Sirigineedi_Navann
    @Sirigineedi_Navann Рік тому

    Wonderful explanation 🎉🎉

  • @tendupadala5090
    @tendupadala5090 Рік тому

    Chala baga cheparu

  • @bhanuprakash8297.
    @bhanuprakash8297. Рік тому

    Distrint kuda use cheyachu anukunta sis

  • @tendupadala5090
    @tendupadala5090 Рік тому

    Metho matladali please sql gurinchi

  • @tendupadala5090
    @tendupadala5090 Рік тому

    Madam garu inka clear ga chepandi pls

    • @TeluguTechCoder
      @TeluguTechCoder Рік тому

      Sure, I will try to give clear videos to the best of my level, thank u 😊

  • @tendupadala5090
    @tendupadala5090 Рік тому

    Thank u for your help

  • @Sirigineedi_Navann
    @Sirigineedi_Navann Рік тому

    Wonderful explanation 👏👏👏👏👏👏👏👏👏👏

    • @TeluguTechCoder
      @TeluguTechCoder Рік тому

      Thank you so much, Your support and encouragement mean a lot to me.

  • @kiranpolishetty650
    @kiranpolishetty650 Рік тому

    HI MEDAM,CAN YOU PLEASE EXPLAIN HOW TO INSTALL MY SQL SOFTWARE.

    • @TeluguTechCoder
      @TeluguTechCoder Рік тому

      Hi Kiran, I will make one video how to install MySQL software

  • @uthpalabitra7855
    @uthpalabitra7855 Рік тому

    Great Explanation

  • @uthpalabitra7855
    @uthpalabitra7855 Рік тому

    you cleared all my doubts, expecting more videos from you. Daily I'm waiting for your videos. Plz make videos on Advance Topics on SQL

  • @bhanuprakash-ob8uq
    @bhanuprakash-ob8uq Рік тому

    Really superb and comprehensive explanation, I heartfully appreciate your efforts ma'am. Thank u😊

  • @uthpalabitra7855
    @uthpalabitra7855 Рік тому

    As expected, Your videos are helpful to many people. My Request is please make videos with real time Requirements for T-SQL Topics like Stored Procedures, Views, Cursors, Triggers, Functions, Dynamic SQL, Performance Tuning , Debugging, Query Optimisation. Also Need SQL End-To-End /project with Real Data for Practice. Thank You for Your Efforts.

    • @TeluguTechCoder
      @TeluguTechCoder Рік тому

      Noted. I will try my best, will include advanced concepts once basics are done. Thanks for sharing inputs!

  • @uthpalabitra7855
    @uthpalabitra7855 Рік тому

    Thank You so much . I am happy that i found your channel who teaches SQL in telugu. plz continue the sql playlist and all main topics who are preparing for interview. it will be very helpful.

  • @praveenkumar_0143
    @praveenkumar_0143 Рік тому

    Good scenario question

  • @praveenkumar_0143
    @praveenkumar_0143 Рік тому

    Clearly explained and really helpful for people who are sql beginners and wish you all the best.