Excellent video! I was in time crunch and have always got confused with joins. Saw your video, not just understood but feel confident about the concept! Thanks a ton!!
@ankitbansal62 ай бұрын
Great to hear!
@NatureAndTravelAndAnimals2 жыл бұрын
Clear explanation bro and I appreciate your efforts in making videos on SQL
@ankitbansal62 жыл бұрын
Glad to know 🙂
@shauryaverma87802 жыл бұрын
The best till date, thank you so much !!!!
@ankitbansal62 жыл бұрын
Glad it helped!
@sauravips Жыл бұрын
fantastic explanation brother
@SuperMohit952 жыл бұрын
Great refresher on Joins!
@SumanGhosh-vn3tx2 жыл бұрын
Very Infrormative.Thanks a ton!!
@ankitbansal62 жыл бұрын
Good to know 😊
@pavitrashailaja8502 жыл бұрын
Very clearly explained 🙏🏻
@ankitbansal62 жыл бұрын
Glad you liked it ☺️
@utkarshdixit35022 жыл бұрын
Beautiful explanation
@ankitbansal62 жыл бұрын
Thank you 😊
@vatsalvasavada1364 ай бұрын
HI Ankit great video. where I can find DDL for this exercise?
@shashankdhandharia41752 жыл бұрын
Great explanation Instead of coalesce function can we use IFNULL function?
@ankitbansal62 жыл бұрын
If it's there in your database you can use. Moreover ifnull will take only 2 arguments while coalesce can have many..
@deepthimurali9622 жыл бұрын
I have imported the superstore dataset from the drive link posted in description and removed duplicates using the below query. Is the query right? with CTE_remove_dup as (SELECT r.*, ROW_NUMBER() OVER ( PARTITION BY order_id ORDER BY order_id desc) AS RN FROM [dbo].[returns] r ) DELETE from CTE_remove_dup WHERE RN > 1 with CTE_remove_dup as (SELECT s.*, ROW_NUMBER() OVER ( PARTITION BY order_id ORDER BY row_id desc) AS RN FROM [dbo].[superstore_orders] s ) DELETE from CTE_remove_dup WHERE RN > 1
@ankitbansal62 жыл бұрын
Looks good 🙂
@chetanpatil1266 Жыл бұрын
Thank you
@adityaanand15912 жыл бұрын
it's really a good explanation with example..Is there any complete tutorial of yours on SQL.
@ankitbansal62 жыл бұрын
Thanks Aditya. I am planning to create a playlist zero to hero. Stay tuned.
@adityaanand15912 жыл бұрын
@@ankitbansal6 Thanks, I am curious for that playlist. The way you have explained the JOINS through a case study is really very helpful. So, also try to make your playlist with such type of case study for complete course.
@abhimanyutiwari1002 жыл бұрын
Thanks, can you tell what is the dateype to store "mm/dd/yyyy" as mentioned in your video. I am using DATE data type to create ship_date column.
@ankitbansal62 жыл бұрын
You can store mm/dd/yyyy in a date data type column..
@jyotsanapandey9786 ай бұрын
I have downloaded the dataset from the description by it still shows the all rows and columns (9994) the given dataset do have duplicate values. What should i do now???
@sunnysharma54026 ай бұрын
do remove duplicate only on Order_ID columns in Superstore_Orders . It will be 5009 Orders. This will fix your problem
@swatisingh-yw1fw3 ай бұрын
sir i am not able to import excel file in sql server please in the beginning tell how to get dataset in sql server.
@sudarshanthota44442 жыл бұрын
Could you please upload video on removing dupilcates using queries...
@ankitbansal62 жыл бұрын
Sure will do that.
@sudarshanthota44442 жыл бұрын
@@ankitbansal6 please make video on above mentioned order's and return data for removing dupilcates..
@ankitbansal62 жыл бұрын
@@sudarshanthota4444 You want to delete duplicates from table or just return data without duplicates