codeWarrior456
Technical User
Is there a way to write a query that just returns the names of all the columns in a given table? If so, how can this be done?
Thanks for your help in advance.
Thanks for your help in advance.
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
select column_name
from information_schema.columns
where table_name = 'GIVEN'
sp_help GivenTable
sp_columns GivenTable
[/ignore][code]CodeHere