複数のテーブルの名前を選択するクエリがあります。
INFORMATION_SCHEMA.TABLES からのテーブルとして TABLE_NAME を選択します
+---------------+
| TABLES |
+---------------+
| A |
| B |
| <more tables> |
+---------------+
各テーブルのすべての値が結合されたクエリを作成したいと思います。
+------------+----+----------+
| table_name | id | name |
+------------+----+----------+
| A | 1 | item1 | <- Items from Table A
| A | 2 | item2 |
| A | 3 | item3 |
| B | 1 | item1 | <- Items from Table B
| B | 2 | item2 |
| <entries for other tables> |
+------------+----+----------+
何か案は?前もって感謝します!