Answers for "find all tables with name like"

SQL
0

get all tables using like

SELECT * FROM INFORMATION_SCHEMA.TABLES 
WHERE TABLE_NAME LIKE '%%'
Posted by: Guest on November-08-2020

Code answers related to "find all tables with name like"

Code answers related to "SQL"

Browse Popular Code Answers by Language