2017-11-18 12 views
1

すべてのテーブルのリストを作成し、その後にmysqlのデータベースの列を作成しようとしています。私はこのクエリのTODOを書いたmysql:すべてのテーブルを列で表示する

Table1: col_1, col_2, col_3

Table2: col_a, col_b, col_c, col_d

ので

select TABLE_NAME as tn, CONCAT_WS (', ', SELECT COLUMN_NAME 
              from information_schema.columns 
              where TABLE_NAME = tn) 
from information_schema.columns 
where table_schema = 'pgstudies' 
order by table_name,ordinal_position; 

私はこのコードを実行すると:私は彼らのそれぞれの列を持つ2つのテーブル表1と表2を持っている場合たとえば、私はこのような何かに出力したいです

1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'SELECT COLUMN_NAME from information_schema.columns where TABLE_NAME = tn) from ' at line 1

このエラーを解決する方法や、同じ結果を得る別の方法を教えてください。

答えて

1

GROUP_CONCATトリックを行います。

SELECT table_name, GROUP_CONCAT(column_name ORDER BY ordinal_position SEPARATOR ', ') as columns 
FROM information_schema.columns 
WHERE table_schema = 'pgstudies' 
GROUP BY table_name 
ORDER BY table_name; 
関連する問題