BuilderSpec
Programmer
If I know a table name in an SQL database. ( Microsoft SQL Server ). Is there an specific SQL command to show me the fields in that table ?
Regards
BuilderSpec
Regards
BuilderSpec
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 *
from information_schema.columns
where table_name = 'T'
and table_schema = 'SA'