Answers for "sql table name"

SQL
2

sql server find table name

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

select table column name in sql

/**
You must have all privillage to access this, else it will denaid access :)
**/

SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = N'tableName';
Posted by: Guest on November-14-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language