Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
列名があり、この列がどのテーブルに属しているかを知りたいですか?または、mysqlのデータベースにこの列があるテーブルのリストを取得するようなものです。
前もって感謝します!Vijay.Sekar
information_schemaデータベースにクエリを実行できます。
information_schema
SELECT TABLE_SCHEMA, TABLE_NAME FROM information_schema.`COLUMNS` WHERE COLUMN_NAME = 'your_column_name'