View table schema using SQL
View table schema using SQL
Use this query to get the schema:
select *
from INFORMATION_SCHEMA.COLUMNS
where TABLE_NAME='tableName'
Use this query to get the schema:
select *
from INFORMATION_SCHEMA.COLUMNS
where TABLE_NAME='tableName'
Leave a comment