Patson S. answered 04/27/19
Tutor
New to Wyzant
Javascript Node SQL json Acid Base equilibrium
You can use the stored procedure sp_columns:
exec sp_columns <table name>
Or you write a select statement from information_schema.columns:
select * from information_schema.columns where table_name = 'tableName'