Explained it so well that my baby Son could understand it. Thanks a million
@jayjfreedman Жыл бұрын
Great video, very good at explaining XML Path and STUFF separately.
@LearnatKnowstar Жыл бұрын
Glad it was helpful!
@archananerkar31132 жыл бұрын
after lots of search i got this video,that great thank you
@LearnatKnowstar2 жыл бұрын
Thank you
@matts8911 Жыл бұрын
good explanations, thanks for sharing this video I found it very helpful.
@LearnatKnowstar Жыл бұрын
Glad it was helpful!
@mvicky90253 жыл бұрын
Well explained thank you soo much for sharing.. 👍
@LearnatKnowstar3 жыл бұрын
Thank you!
@viewableorchid64642 жыл бұрын
Very easy to understand. Thank you
@LearnatKnowstar2 жыл бұрын
Thank You
@Melodychoice6013 жыл бұрын
Very nice logic used...👍
@LearnatKnowstar3 жыл бұрын
Thank you!
@niranjanbalajisingh67262 жыл бұрын
Very useful stuff thank you
@elite_broly7590 Жыл бұрын
Good one 🙏
@LearnatKnowstar Жыл бұрын
Thank you !
@landchennai8549Ай бұрын
declare @Table table (Id int,[Name] varchar(32)) insert into @Table values (1,'Prasad'),(1,'Priyan'),(2,'Askok'),(2,'Kumar') select Id , STRING_AGG([Name],',') as Fullname from @Table group by Id
@vishaljhaveri756510 ай бұрын
Awesome video explanation!
@LearnatKnowstar10 ай бұрын
Thank you!
@abdulk63113 жыл бұрын
great video; Thank you! excellent explanation.
@LearnatKnowstar3 жыл бұрын
Thank you
@rajugrg24932 жыл бұрын
Here, directly we can use strin_aggrigate() function
@LearnatKnowstar2 жыл бұрын
You are correct. String_AGG function does not work for some older versions of SQL Server where this approach can be used.
@kristyowens22843 жыл бұрын
Thank you for sharing!
@LearnatKnowstar3 жыл бұрын
Thank you
@Beyondhorizons-i5z3 жыл бұрын
Great session!
@FrankBadillo Жыл бұрын
Thanks!
@LearnatKnowstar Жыл бұрын
You are our first Super Thanks! Thank you!!!
@kavipriya28232 жыл бұрын
Can you please tell how to write stuff with different data types and columns for different tables?
@viewableorchid64642 жыл бұрын
can we also use STRING_AGG function instead of this?
@LearnatKnowstar2 жыл бұрын
Yes
@briandennehy63802 жыл бұрын
Another good video. Could I just suggest maybe formatting your code a bit better so that it's a bit easier to read and understand
@LearnatKnowstar2 жыл бұрын
Thank you so much.
@itaydiaz9 ай бұрын
thank you
@LearnatKnowstar9 ай бұрын
Glad it was helpful
@piyushjoshi80383 жыл бұрын
I think Oracle LIST_AGG Function also works in same way, merging rows to comma separated values
@LearnatKnowstar3 жыл бұрын
Yes, it is similar 👍
@vaibhavware7164 Жыл бұрын
Yes ..its similar
@katesantos2343 Жыл бұрын
can this also be done from column to row? HELP ME PLESSS. THANK YOU 🥲
@KiranPatil-zw8tm Жыл бұрын
String_Agg would have been easy way to solve it.
@LearnatKnowstar Жыл бұрын
Yes. This is for SQL Server versions where STRING_AGG does not work.