i have read this article Select data from “show tables” MySQL query . But i need to get table from show tables. I try this syntax at the first.
show tables from pos where
tables_in_pos
like (select kdtk from toko)
and then the value has show
+-------------------+
| tables_in_pos |+-------------------+
| fnpk |
after that i try this syntax
select * from concat(show tables from pos where
tables_in_pos
like (select kdtk from toko),'a') as Hasil
How to select table from syntax Show on mysql? without using Procedure.