MySQL: Determine Table's Primary Key Dynamically

这一生的挚爱 提交于 2019-11-26 16:49:47

问题


I'm, generating a SQL query like this in PHP:

$sql = sprintf("UPDATE %s SET %s = %s WHERE %s = %s", ...);

Since almost every part of this query is dynamic I need a way to determine the table's primary key dynamically, so that I'd have a query like this:

$sql = sprintf("UPDATE %s SET %s=%s WHERE PRIMARY_KEY = %s", ...);

Is there a MySQL keyword for a table's primary key, or a way to get it?

I've used the information_schema DB before to find information like this, but it'd be nice if I didn't have to resort to that.


回答1:


SHOW INDEX FROM <tablename>

You want the row where Key_name = PRIMARY

http://dev.mysql.com/doc/refman/5.0/en/show-index.html

You'll probably want to cache the results -- it takes a while to run SHOW statements on all the tables you might need to work with.




回答2:


It might be not advised but works just fine:

SHOW INDEX FROM <table_name> WHERE Key_name = 'PRIMARY';

The solid way is to use information_schema:

SELECT k.COLUMN_NAME
FROM information_schema.table_constraints t
LEFT JOIN information_schema.key_column_usage k
USING(constraint_name,table_schema,table_name)
WHERE t.constraint_type='PRIMARY KEY'
    AND t.table_schema=DATABASE()
    AND t.table_name='owalog';

As presented on the mysql-list. However its a few times slower from the first solution.




回答3:


A better way to get Primary Key columns:

SELECT `COLUMN_NAME`
FROM `information_schema`.`COLUMNS`
WHERE (`TABLE_SCHEMA` = 'dbName')
  AND (`TABLE_NAME` = 'tableName')
  AND (`COLUMN_KEY` = 'PRI');

From http://mysql-0v34c10ck.blogspot.com/2011/05/better-way-to-get-primary-key-columns.html




回答4:


Also

SHOW INDEX FROM <table_name> WHERE Key_name = 'PRIMARY';

Is equivalent to

SHOW KEYS FROM <table_name> WHERE Key_name = 'PRIMARY';




回答5:


Based on @jake-sully and @lukmdo answers, making a merge of their code, I finished with the following snippet:

SELECT `COLUMN_NAME`
FROM `information_schema`.`COLUMNS`
WHERE (`TABLE_SCHEMA` = DATABASE())
AND (`TABLE_NAME` = '<tablename>')
AND (`COLUMN_KEY` = 'PRI');

Hope it could help someone



来源:https://stackoverflow.com/questions/893874/mysql-determine-tables-primary-key-dynamically

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!