วันเสาร์ที่ 15 มิถุนายน พ.ศ. 2556

How to Find Foreign Key Constraints in MySQL

Detail here >> http://stackoverflow.com/questions/806989/mysql-how-to-i-find-all-tables-that-have-foreign-keys-that-reference-particular

USE information_schema;
SELECT * FROM KEY_COLUMN_USAGE WHERE REFERENCED_TABLE_NAME = 'X' AND REFERENCED_COLUMN_NAME = 'X_id';

ไม่มีความคิดเห็น:

แสดงความคิดเห็น