Answers for "how to selct particular table from given tables in db"

SQL
2

sql server find table name

select * from sys.tables where name like '%tablename%'
Posted by: Guest on October-03-2020
1

get all columns from table sql

SELECT
  	TABLE_NAME
FROM
  	INFORMATION_SCHEMA.TABLES
Posted by: Guest on August-20-2020

Code answers related to "how to selct particular table from given tables in db"

Code answers related to "SQL"

Browse Popular Code Answers by Language