Skip to content

Latest commit

 

History

History
11 lines (8 loc) · 265 Bytes

view-table-schema-using-sql.md

File metadata and controls

11 lines (8 loc) · 265 Bytes

View table schema using SQL

Use this query to get the schema:

select *
from INFORMATION_SCHEMA.COLUMNS
where TABLE_NAME='tableName'

Stackoverflow