Answers for "SQL FIND ALL TABLES WITH NAME LIKE"

SQL
2

sql server find table name

select * from sys.tables where name like '%tablename%'
Posted by: Guest on October-03-2020
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 "SQL FIND ALL TABLES WITH NAME LIKE"

Code answers related to "SQL"

Browse Popular Code Answers by Language