Posts by Alex Valsechi • 1 point
1 post
-
0
votes0
answers14
viewsQ: Sqlserver to Mysql conversion - sys table id
I have the following query in SQL Server: Declare @val Varchar(max) Select @val = COALESCE(@val + ', ' + col.name, col.name) FROM sys.objects AS obj INNER JOIN sys.columns AS col ON col.object_id =…