Register at the below link to get US $100 off for Coursera Plus membership between Sep 8 - Sep 29, 2022. The Coursera Plus membership gets you access to unlimited courses and unlimited certifications! imp.i384100.net/Ke51on
@marshalljackson13854 жыл бұрын
Thank you providing multiple methods of pivoting columns into rows. Very informative and useful.
@LearnatKnowstar4 жыл бұрын
Thank you
@erikashantini85293 жыл бұрын
Thank you very much for this :) It saved me from a job request today big time!! Thank you!
@LearnatKnowstar3 жыл бұрын
Thanks a lot!
@gbagba812 жыл бұрын
this is outstandingly perfect
@LearnatKnowstar2 жыл бұрын
Thank you so much.
@roshninirmolia7440 Жыл бұрын
This is exactly what I was searching for. You made my day thank you so much
@LearnatKnowstar Жыл бұрын
Glad it helped!
@gulahmadfaizi65723 жыл бұрын
Thanks A lot Sister, Please keep it up. repsect from Afghanistan.
@LearnatKnowstar3 жыл бұрын
Thanks so much!
@LearnatKnowstar4 жыл бұрын
Thank you for sending the SQL Queries that you were asked in interviews. We will be covering most of them in future videos. If you wish to share more such queries, then you can send them to our email or put them down in the comments below!
@shreddersengupta73844 жыл бұрын
This is great! keep up the good work.
@LearnatKnowstar4 жыл бұрын
Thank you
@8886naveen Жыл бұрын
Very Informative. It helped me to solve my project requirement🤩
@LearnatKnowstar Жыл бұрын
Glad it helped
@shubhammalviya30012 жыл бұрын
Your voice is very sweet , Thanks for the explanation. Above approach is working on SQL server but not on Mysql please help.
@bonghahn6610 Жыл бұрын
Hi Your Case Section on tables is great. The issue I have is when I want to show filtered records only, for example I have several forms and I wnat to only show form 5 entries. I tried WHERE formid=5 but i get error message. Hope my question makes sense.
@kristyowens22844 жыл бұрын
very nicely explained.
@LearnatKnowstar4 жыл бұрын
Thank you
@sourabhpatel3834 Жыл бұрын
We can use pivot also?
@pritichauhan463 Жыл бұрын
Thanks a lot for this efforts❤❤
@LearnatKnowstar Жыл бұрын
Thank you
@master_persi2 жыл бұрын
very helpful video.
@LearnatKnowstar2 жыл бұрын
Thank you so much.
@engp86912 жыл бұрын
Can you provide a download of the Database you used for your videos. Thank you so much.
@LearnatKnowstar2 жыл бұрын
We will try to upload the sqls which can be used for practice.
@ahmadiyorismatov1971 Жыл бұрын
what is data type of [value] column . there is mixed number and letters
@widzewisze84753 жыл бұрын
hi ; thanks for your video , but can you add another one about many rows ? ,i need help about n rows?
@rapthaduchandra1113 Жыл бұрын
Hi Team, Can you please send me the table syntaxes for these tables.
@chetankulkarni54 жыл бұрын
Please explain real time scenarios while loading the data to a table. Ex. Will the job fail if an application layer is inserting the data and the same table is being read by other job.
@LearnatKnowstar3 жыл бұрын
Thanks for your suggestions. Will plan videos soon
@farooqkota8692 Жыл бұрын
Thanks mam very helpful
@LearnatKnowstar Жыл бұрын
Thank You!
@akhildas37433 жыл бұрын
Can u do it with multiple rows?
@ДмитрийСтрекалов-т7в2 жыл бұрын
declare @cmd varchar(max) = 'select id' select @cmd += replace(char(10)+',max(iif(name=''@name'',val,null)) @name','@name',name) from (select distinct Name from temp_t1) t set @cmd += ' from temp_t1 group by id' print @cmd exec(@cmd)
@adarshsonare9049 Жыл бұрын
Thanks
@LearnatKnowstar Жыл бұрын
Glad it was helpful.
@Tejailab6 ай бұрын
please provide data sets for all related videso
@klavesin2 жыл бұрын
Won't work if a value is NULL. Better use "else Null" instead of "else ''"