Answers for "sql server information_schema temp tables"

SQL
0

sql server information_schema temp tables

SELECT 
	* 
FROM
	tempdb.INFORMATION_SCHEMA.COLUMNS 
WHERE 
	TABLE_NAME LIKE '%XYZ%'
ORDER BY 
	ORDINAL_POSITION
Posted by: Guest on November-17-2020

Code answers related to "sql server information_schema temp tables"

Code answers related to "SQL"

Browse Popular Code Answers by Language