このクエリがあります。実行すると Query ステートメントを取得しましたが、このクエリの結果セットが必要です。
私のクエリは次のとおりです。
SELECT CONCAT('select * from ', table_name, ' union all ') AS CUSTOMQUERY
FROM information_schema.tables
WHERE table_name LIKE '%custom%'
私はこの結果を得る
select * from custom_70006 union all
select * from custom_704306 union all
select * from custom_700436 union all
select * from custom_7000643 union all
select * from custom_7000634 union all
select * from custom_700046 union all
select * from custom_700063 union all
select * from custom_700062 union all
しかし、対応するデータを含むこの特定の列の結果セットが必要で、最後にunion all
削除する必要があります。
関連するクエリで私を助けてください。