选择MySQL中表的键列表

发布于 2024-11-08 02:24:00 字数 329 浏览 0 评论 0原文

假设我有一个表“产品”,我想检查该表是否有任何索引、外键等

“描述产品”会提供一些信息。

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

っ左 2024-11-15 02:24:00

您可以使用

SHOW CREATE TABLE products

它为您提供创建表的查询。最有信息性的。

You can use

SHOW CREATE TABLE products

which gives you the query for creating the table. The most informative.

猫卆 2024-11-15 02:24:00

SHOW INDEXES IN 将给出该表中的所有索引。

SHOW INDEXES IN <tablename> will give all the indexes in that table.

夜清冷一曲。 2024-11-15 02:24:00

我不知道外键,但是 SHOW INDEX FROM tablename; 提供了很多容易解析的信息。

I don't know about foreign keys, but SHOW INDEX FROM tablename; gives a lot of easily parsed information.

迷迭香的记忆 2024-11-15 02:24:00

最好的方法是使用此处记录的 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

装纯掩盖桑 2024-11-15 02:24:00
$result = mysql_query("SHOW FIELDS FROM $DATABASE.$TABLE_NAME");

$i = 0;

while ($row = mysql_fetch_array($result)) {
  echo $row['Field'] . ' ' . $row['Type'];
}
$result = mysql_query("SHOW FIELDS FROM $DATABASE.$TABLE_NAME");

$i = 0;

while ($row = mysql_fetch_array($result)) {
  echo $row['Field'] . ' ' . $row['Type'];
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文