If you have a simple table like:
Id Name Age
1 Saeed 32
2 John 28
3 David 34
Then you can create a JSON using For XML
in SQL Server just like:
select '{ name : "' + Name + '", age : ' + age + ' }'
from People
where Id = 1
for xml path('')
This is easy, because columns are known beforehand. However, I'm stuck at creating JSON from an EAV table. For example, if the table is:
Id EntityId Key Value
1 1 Name Saeed
2 1 Age 32
3 1 Gender Male
4 1 Key1 Value1
5 1 Key2 Value2
How can I create this JSON?
{ Name: "Saeed", Age: 32, Gender: "Male", Key1: "Value1", Key2: "Value2" }
From this query:
select *
from PeopleEav
where EntityId = 1
Please note that the number of keys is variable (it's an EAV table).