Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
Add JSON"Valuetypes to XML Nodes using SQL
---Fake tables in Stored procedure1 create table #Cdetails(cid int, name varchar(5), age int) insert into #Cdetails values(1001,'John',12), (1002,'Rick',19), (1003,'Diane',25), (1004,'Kippy',26) --Output of Stored procedure create table #final(xml_data xml) insert into #final select XML_data = (select ID = cd1.cid, details = ( select cd.name, cd.age from #Cdetails cd where cd.cid = cd1.cid For XML Path(''), Type) from #Cdetails cd1 For XML Path('Main')); ;WITH XMLNAMESPACES ('http://www.samplenamespace.com/json' as json) select * from #final For XML Path('Main') drop table #Cdetails,#final
run
|
edit
|
history
|
help
0
SQL Server - NULL values with IN and NOT IN
Exam_Final
forming date as nvarchar
elie homsi's code
Pro 2
Window Functions - ROW_NUMBER()
TEST-A3
WORK
h
sql 7