mysql select tables with name like

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

we are a community of more than 2 million smartest coders
registration for
employee referral programs
are now open
get referred to google, amazon, flipkart and more
register now
  
pinned-register now
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