选择MySQL中表的键列表
假设我有一个表“产品”,我想检查该表是否有任何索引、外键等
“描述产品”会提供一些信息。
Field Type Null Key Default Extra
productCode varchar(200) NO MUL NULL
description varchar(500) NO NULL
主要是案例中的关键字段。但显然没有引用以及哪个表链接到谁等等。
通过 SQL 获取有关表的此类信息的最佳方法是什么?
谢谢
Say I have a table "products" and I would like to check if this table has any indexes, foreign keys etc
A "DESCRIBE products" would give some information.
Field Type Null Key Default Extra
productCode varchar(200) NO MUL NULL
description varchar(500) NO NULL
Mainly the key field in the case. But defenietly no references and what table is linked to who etc etc.
What is the best way to get such information via SQL about a table?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
您可以使用
它为您提供创建表的查询。最有信息性的。
You can use
which gives you the query for creating the table. The most informative.
SHOW INDEXES IN
将给出该表中的所有索引。SHOW INDEXES IN
<tablename>
will give all the indexes in that table.我不知道外键,但是
SHOW INDEX FROM tablename;
提供了很多容易解析的信息。I don't know about foreign keys, but
SHOW INDEX FROM tablename;
gives a lot of easily parsed information.最好的方法是使用此处记录的
INFORMATION_SCHEMA
:http://dev.mysql.com/doc/refman/5.5/en/information-schema.html
The best way is to use the
INFORMATION_SCHEMA
as documented here:http://dev.mysql.com/doc/refman/5.5/en/information-schema.html