php - get all tables names that start with a string -
i've lot of tables in database , wanted know if there way can tables names start string.
for example, have string: my_table
, of tables names starts it. expected result my_table_*
it's pretty starts it.
is possible?
thanks in advance!
simple command:
show tables 'my_table*'
thanks
Comments
Post a Comment