Search
 
SCRIPT & CODE EXAMPLE
 

SQL

sql server information_schema temp tables

SELECT 
	* 
FROM
	tempdb.INFORMATION_SCHEMA.COLUMNS 
WHERE 
	TABLE_NAME LIKE '%XYZ%'
ORDER BY 
	ORDINAL_POSITION
Comment

PREVIOUS NEXT
Code Example
Sql :: check lock on table in sql server 
Sql :: how to identify locked tables in sql server 
Sql :: jwt laravel 
Sql :: update and replace mysql 
Sql :: postgres create column with default value 
Sql :: spring data.sql table not found 
Sql :: select random sql 
Sql :: sqlalchemy return id after insert 
Sql :: rename a table in sql server 
Sql :: get foreign table names mysql 
Sql :: oracle sql drop column if exists 
Sql :: Cast for print sql 
Sql :: mysql add column to table 
Sql :: sqlite get last 
Sql :: json query 
Sql :: test the postgresql db connection 
Sql :: stored procedure to delete data from table in mysql 
Sql :: mysql regexp match word 
Sql :: Get first name and last name from full name string in SQL 
Sql :: mysql login to a specific database terminal 
Sql :: sql format time 
Sql :: mysql order by multiple columns 
Sql :: Create boolean column in MySQL with false as default value? 
Sql :: SQL: get date difference in minutes 
Sql :: SQL Multi-line Comments 
Sql :: oracle all_dependencies 
Sql :: view table sql 
Sql :: df to sql pandas sql achemy 
Sql :: using minus query in SQL 
Sql :: mysql how to use FIND_IN_SET function in WHERE clause ? 
ADD CONTENT
Topic
Content
Source link
Name
6+3 =