mysql select tables with name like

Solutions on MaxInterview for mysql select tables with name like by the best coders in the world

showing results for - "mysql select tables with name like"
Grace
22 Feb 2018
1SELECT table_name
2FROM information_schema.tables
Anthony
28 Jun 2020
1select table_schema as database_name,
2    table_name
3from information_schema.tables
4where table_type = 'BASE TABLE'
5    and table_name like 'cu%'
6order by table_schema,
7     table_name;
8