SQL Server 2025 support #659
sebflaesch
started this conversation in
General
Replies: 2 comments 8 replies
-
I was expecting patches from you 😄 |
Beta Was this translation helpful? Give feedback.
1 reply
-
Usually contractors allows exceptions for coding on related projects. Anyway... create table #tmp1(id int, js json null)
go
insert into #tmp1 values(1, '{"test":123}')
go
select * from #tmp1
go I'm getting
that is like a These queries instead produce our new type select json_arrayagg(js) as xyz from #tmp1
go
select json_query(js) from #tmp1
go |
Beta Was this translation helpful? Give feedback.
7 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hello,
SQL Server 2025 CTP2 is available as public preview.
Is there any work on FreeTDS to support for new features like JSON and VECTOR data types?
Thanks
Seb
Beta Was this translation helpful? Give feedback.
All reactions