how to get comma separated values in sql | sql server interview questions and answers | sql server

  Рет қаралды 34,224

SS UNITECH

SS UNITECH

Күн бұрын

#ssunitech #SQLInterviewQuestionsandanswers #sqlInterviewQuestions #sqlInterviewQuestionsForTesting
how to get comma separated values in sql | sql server interview questions and answers | sql server
-Scripts-
Create Table Comma_Separated_Tbl
(
TrainingId Int ,
Training varchar(100),
Classroom varchar(100),
StartTime Time,
duration numeric(14,2),
wk varchar(10)
)
Insert Comma_Separated_Tbl
Select 1,'SQL Server','Silver Room','10:00',2.00,'M'
Union
Select 2,'SQL Server','Silver Room','10:00',2.00,'W'
UNION
Select 3,'SQL Server','Silver Room','10:00',2.00,'T'
Union
Select 4,'SQL Server','Silver Room','10:00',2.00,'F'
UNION
Select 5,'MSBI','GOLD Room','11:00',1.45,'F'
Union
Select 6,'MSBI','GOLD Room','11:00',1.45,'M'
Union
Select 7,'MSBI','GOLD Room','11:00',1.45,'TH'
Select *
from Comma_Separated_Tbl
SELECT DISTINCT Training,Classroom,StartTime,duration,STUFF(
(SELECT ',' + wk FROM Comma_Separated_Tbl
WHERE Training=A.Training FOR XML PATH ('')), 1, 1, ''
)
FROM Comma_Separated_Tbl AS A
Find Us On KZbin- "Subscribe Channel to watch Database related videos" / @ssunitech6890
For Quiz-
• sql server : Interview...
Find Us On FaceBook-
/ ss-unitech-18770538867...

Пікірлер: 100
@scrt1111
@scrt1111 3 жыл бұрын
Nice ..Information share...Thanks
@ssunitech6890
@ssunitech6890 3 жыл бұрын
Thanks for your appreciation
@mariapradeepm
@mariapradeepm 3 жыл бұрын
Thanks so much, it's really helpful. Duration is not giving aggregated values for 3 days. We need to use Sum and group by to solve this! Hope that's not the idea for this session but thought of sharing.
@ssunitech6890
@ssunitech6890 3 жыл бұрын
Thanks for your suggestion. Keep watching and commenting. Thanks again
@AK-rw8zq
@AK-rw8zq 4 жыл бұрын
I think we can use Wk+',' like this can give comma after the first week in the table...How we can do the reverse of the query comma separate values into new rows. Good approach and nice explanation.
@ssunitech6890
@ssunitech6890 4 жыл бұрын
Yes right Ak. For a single problem we have multiple solutions. Thanks-SS Unitech
@sairamprasadg8838
@sairamprasadg8838 4 жыл бұрын
select Training,Classroom,StartTime,duration, STRING_AGG(wk,',') from Comma_Separated_Tbl group by Training,Classroom,StartTime,duration This is the simplest one
@ssunitech6890
@ssunitech6890 4 жыл бұрын
Yup this is also good one. Thanks-SS Unitech
@devi.elvira
@devi.elvira 4 жыл бұрын
I tried in SQL server, but not working
@gordonpeplinski8293
@gordonpeplinski8293 8 ай бұрын
thank you for helping me fix my code
@ssunitech6890
@ssunitech6890 8 ай бұрын
Thanks, Please share to others
@shubhangiagarwal3327
@shubhangiagarwal3327 5 жыл бұрын
Very nice video... waiting for the next...
@ssunitech6890
@ssunitech6890 5 жыл бұрын
Thanks dear 🙏, Sure you will get every Saturday
@lokesh2635
@lokesh2635 4 жыл бұрын
Tq so much bro , u saved me just now I got dis question 👍👍👍
@ssunitech6890
@ssunitech6890 4 жыл бұрын
Great 👍. Can you please share the videos to your friends
@p.vsingh2876
@p.vsingh2876 5 жыл бұрын
Excellent video sir
@ssunitech6890
@ssunitech6890 5 жыл бұрын
Thanks dear 🙏
@hosseinabbasabadi1471
@hosseinabbasabadi1471 2 жыл бұрын
great video
@ssunitech6890
@ssunitech6890 2 жыл бұрын
Thanks 🙏
@roblynch99
@roblynch99 4 жыл бұрын
nice approach
@ssunitech6890
@ssunitech6890 4 жыл бұрын
Thanks Rob. Please share to others
@chandrakumarreddyvennapusa7806
@chandrakumarreddyvennapusa7806 4 жыл бұрын
Wonderfull sir Thank you so much for sharing information:)
@ssunitech6890
@ssunitech6890 4 жыл бұрын
Thanks. Please share to others
@chandrakumarreddyvennapusa7806
@chandrakumarreddyvennapusa7806 4 жыл бұрын
Sure sir 👌👍👍👌👍👌
@ramprakash7883
@ramprakash7883 5 жыл бұрын
Very common interview question..
@ssunitech6890
@ssunitech6890 5 жыл бұрын
Thanks dear 🙏
@maheshkumar-vn6sn
@maheshkumar-vn6sn 5 жыл бұрын
Really appreciate!! Thanks for sharing..
@ssunitech6890
@ssunitech6890 5 жыл бұрын
Thanks dear 🙏
@jaideepmalik1028
@jaideepmalik1028 5 жыл бұрын
Good
@ssunitech6890
@ssunitech6890 5 жыл бұрын
Thanks dear 🙏
@rs6559
@rs6559 5 жыл бұрын
Helped A Lot..Thanks
@ssunitech6890
@ssunitech6890 5 жыл бұрын
Thanks a lot please share to others..
@SumitSingh-su3oh
@SumitSingh-su3oh 5 жыл бұрын
Great👌
@ssunitech6890
@ssunitech6890 5 жыл бұрын
Thanks dear 🙏
@sunnyverma419
@sunnyverma419 4 жыл бұрын
Great video, really helpful
@ssunitech6890
@ssunitech6890 4 жыл бұрын
Thanks Sunny..
@123amouri
@123amouri 5 жыл бұрын
Thank you! You are a good teacher
@ssunitech6890
@ssunitech6890 5 жыл бұрын
Thanks dear 👍 Please share to others
@vaibhavsingh4043
@vaibhavsingh4043 5 жыл бұрын
Awesome video... It should get more views and likes👍👍
@ssunitech6890
@ssunitech6890 5 жыл бұрын
Thanks for these appreciating words..
@supervisiongameplay
@supervisiongameplay 5 жыл бұрын
Good explanation! It should get more views and likes..
@ssunitech6890
@ssunitech6890 5 жыл бұрын
Thanks dear 🙏
@pravaspatra3849
@pravaspatra3849 5 жыл бұрын
Nice video sir.
@ssunitech6890
@ssunitech6890 5 жыл бұрын
Thanks pravas for your continuous watching and appreciation..
@BimleshKumar-iw5jn
@BimleshKumar-iw5jn 5 жыл бұрын
Helpful video..
@ssunitech6890
@ssunitech6890 5 жыл бұрын
Thanks dear 🙏
@jyothiprasadkr6189
@jyothiprasadkr6189 3 жыл бұрын
sir, its a really helpful videos for SQL server Interview preparation . Can we use STRING_AGG function to get this output ?
@ssunitech6890
@ssunitech6890 3 жыл бұрын
Yes you can use but old version of SQL server we didn't have this function. It works only lattest versions. Thanks
@naveenreddym6222
@naveenreddym6222 3 жыл бұрын
How to use string agg here?
@ssunitech6890
@ssunitech6890 3 жыл бұрын
String Agg cannot used in this case. I have recored a video on string agg
@ankitagrawal4492
@ankitagrawal4492 3 жыл бұрын
I think by group by other columns then using string_aggr function will work in this case
@ssunitech6890
@ssunitech6890 3 жыл бұрын
Not sure because didn't check will check and confirm Thanks
@chaitanya2725
@chaitanya2725 3 жыл бұрын
Thank you so much for sharing this 😊
@ssunitech6890
@ssunitech6890 3 жыл бұрын
Thanks for your appreciation 😘
@Confidential007.
@Confidential007. 5 жыл бұрын
Good explanation..
@ssunitech6890
@ssunitech6890 5 жыл бұрын
Thanks dear 🙏
@maheshkumar-vn6sn
@maheshkumar-vn6sn 5 жыл бұрын
Nice video
@ssunitech6890
@ssunitech6890 5 жыл бұрын
Thanks dear 🙏
@rajeshkumar912
@rajeshkumar912 5 жыл бұрын
Complex but helpful..
@ssunitech6890
@ssunitech6890 5 жыл бұрын
Thanks dear 🙏
@gagandeepsingh6126
@gagandeepsingh6126 5 жыл бұрын
Awesome
@ssunitech6890
@ssunitech6890 5 жыл бұрын
Thanks dear 🙏
@ambikakheny3857
@ambikakheny3857 3 жыл бұрын
What if i have to find delimiter present in the table ? Can i use xml logic
@ssunitech6890
@ssunitech6890 3 жыл бұрын
Yes
@ambikakheny3857
@ambikakheny3857 3 жыл бұрын
I have tried using xml sir, it didn't work for me ..can you Please explain here
@ssunitech6890
@ssunitech6890 3 жыл бұрын
Let's connect on whatsapp
@saketshrivastava7346
@saketshrivastava7346 5 жыл бұрын
Awesome Video ....it's a request can you upload all important interview questions in one vedio if possible .. I follow and see all your videos and it's very helpful in my SQl related skills
@ssunitech6890
@ssunitech6890 5 жыл бұрын
Thanks Saket for your continuous appreciation! If I merge all the questions then that would be very big video...
@nitagawade3330
@nitagawade3330 4 жыл бұрын
excellent!!
@ssunitech6890
@ssunitech6890 4 жыл бұрын
Thanks Nita... Please share to others
@Tocy777isback0414
@Tocy777isback0414 4 жыл бұрын
Thank you so much!!!!
@ssunitech6890
@ssunitech6890 4 жыл бұрын
Wc. Please share to others
@benjolopez6042
@benjolopez6042 4 жыл бұрын
Thank you for sharing
@ssunitech6890
@ssunitech6890 4 жыл бұрын
Thanks Benjo.. Please share to others
@ShivamKashyap-il7jl
@ShivamKashyap-il7jl 5 жыл бұрын
Sir if the output 0f this tutorial consider as a input and want the output like tutorial query Than how we solve this problem
@ssunitech6890
@ssunitech6890 5 жыл бұрын
Will let know..
@gagandeepsingh6126
@gagandeepsingh6126 5 жыл бұрын
One more thing please post queries regarding to videos on your facebook page or blog for practice purpose.
@ssunitech6890
@ssunitech6890 5 жыл бұрын
Sure I will upload on our Facebook page..
@esmailpaltasingh2073
@esmailpaltasingh2073 Жыл бұрын
How to achieve this same in presto database Sir
@ssunitech6890
@ssunitech6890 Жыл бұрын
Sorry brother, I don't have any idea
@esmailpaltasingh2073
@esmailpaltasingh2073 Жыл бұрын
@@ssunitech6890 ok
@deepakjain5071
@deepakjain5071 5 жыл бұрын
Gud video
@ssunitech6890
@ssunitech6890 5 жыл бұрын
Thanks dear 🙏
@mahanteshchougala1693
@mahanteshchougala1693 5 жыл бұрын
Training clsrm start-time duration wk SQl. Silver. 10. 3. M T W F Bro...tell me how to display like this
@ArshadKhan-hh7gf
@ArshadKhan-hh7gf 2 жыл бұрын
distinct command is not working at last🤷‍♂
@ssunitech6890
@ssunitech6890 2 жыл бұрын
Why??
@ArshadKhan-hh7gf
@ArshadKhan-hh7gf 2 жыл бұрын
@@ssunitech6890 I don't know sir. Have you any other command?
@rohitsethi5696
@rohitsethi5696 2 жыл бұрын
where is the script
@ssunitech6890
@ssunitech6890 2 жыл бұрын
Will add script in description of the video
@mrrish1401
@mrrish1401 4 жыл бұрын
there is no scripts in fb please provide that scripts also
@ssunitech6890
@ssunitech6890 4 жыл бұрын
Thanks dear, I was thinking I added scripts on each video's description.. thanks for letting me know.. Please check the description of the video. Thanks-SS Unitech
@ssunitech9252
@ssunitech9252 5 жыл бұрын
It's very common interview questions, I was waiting for it. Thanks for sharing..
@ssunitech6890
@ssunitech6890 5 жыл бұрын
Thanks Sandhya for your continuous appreciations...
@pawanpal729
@pawanpal729 5 жыл бұрын
Good
@ssunitech6890
@ssunitech6890 5 жыл бұрын
Thanks dear 🙏
@maheshkumar-vn6sn
@maheshkumar-vn6sn 5 жыл бұрын
Nice video
@ssunitech6890
@ssunitech6890 5 жыл бұрын
Thanks dear 🙏
Perfect Pitch Challenge? Easy! 🎤😎| Free Fire Official
00:13
Garena Free Fire Global
Рет қаралды 90 МЛН
The IMPOSSIBLE Puzzle..
00:55
Stokes Twins
Рет қаралды 140 МЛН
PIZZA or CHICKEN // Left or Right Challenge
00:18
Hungry FAM
Рет қаралды 16 МЛН
69 What is Stuff function in sql server
13:02
Learn SSIS
Рет қаралды 1,8 М.
Complex SQL Breakdown (CTEs, Subquery, and More)
22:14
Database Star
Рет қаралды 3,8 М.