Select from following answers:- FOR JSON AUTO
- AUTO JSON
- WITH JSON AUTO
- None
- All Above
sample example,
SELECT name, surname
FROM emp
FOR JSON AUTO
output looks as below,
[{
"name": "ABC"
}, {
"name": "ABC",
"surname": "X"
}]
Show Correct Answer
|
Alert Moderator