I have a sql statement that I need to either sub select or concat to create the select field. When I do this it returns the value of the concat ex.
Select concat('Hel','lo') from world
It would return Hello instead of the value for the column HELLO.
It does the same thing if I subselect from syscolumns
Select (select column_name from syscolumns) from world
Any ideas on how to do this interactively?
Select concat('Hel','lo') from world
It would return Hello instead of the value for the column HELLO.
It does the same thing if I subselect from syscolumns
Select (select column_name from syscolumns) from world
Any ideas on how to do this interactively?