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.
show columns from table_name;
上記の MYSQL コマンドは、すべての列名とデータ型をテーブルに表示します。他の情報を含まない列名のみが必要です。
どんな種類の助けも大歓迎です。ありがとう。
SELECT column_name FROM information_schema.columns WHERE table_schema = 'db_name' AND table_name = 'your_table'
SQLFiddle の例