SQL SERVER Performance – JSON vs XML
2 weeks ago
SELECT name, create_date, modify_date,type
FROM sys.objects
WHERE type = 'P' order by modify_date desc
SELECT name, create_date, modify_date,type
FROM sys.objects
WHERE type = 'P' order by create_date desc
SELECT name, create_date, modify_date,type
FROM sys.objects
WHERE type = 'u' order by create_date desc
SELECT name, create_date, modify_date,type
FROM sys.objects
WHERE type = 'u' order by modify_date desc
Post a Comment