Answers for "temp table in sql server information_schema"

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 "temp table in sql server information_schema"

Code answers related to "SQL"

Browse Popular Code Answers by Language