?yb? 2010-07-25 18:23 采纳率: 0%
浏览 137
已采纳

是否有相当于 MySQL 的 DESCRIBE [ table ]的 SQLite?

I'm just getting started learning SQLite. It would be nice to be able to see the details for a table, like MySQL's DESCRIBE [table]. PRAGMA table_info [table] isn't good enough, as it only has basic information (for example, it doesn't show if a column is a field of some sort or not). Does SQLite have a way to do this?

转载于:https://stackoverflow.com/questions/3330435/is-there-an-sqlite-equivalent-to-mysqls-describe-table

  • 写回答

5条回答 默认 最新

  • perhaps? 2010-07-25 18:27
    关注

    The SQLite command line utility has a .schema TABLENAME command that shows you the create statements.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(4条)

报告相同问题?