Describe table structure

前端 未结 13 2292
北恋
北恋 2020-12-23 15:37

Which query will give the table structure with column definitions in SQL?

13条回答
  •  一个人的身影
    2020-12-23 16:18

    It depends from the database you use. Here is an incomplete list:

    • sqlite3: .schema table_name
    • Postgres (psql): \d table_name
    • SQL Server: sp_help table_name (or sp_columns table_name for only columns)
    • Oracle DB2: desc table_name or describe table_name
    • MySQL: describe table_name (or show columns from table_name for only columns)

提交回复
热议问题