Search
 
SCRIPT & CODE EXAMPLE
 

SQL

get table column names sql ssms

SELECT COLUMN_NAME
FROM INFORMATION_SCHEMA.COLUMNS
WHERE TABLE_NAME = 'Your Table Name'
ORDER BY COLUMN_NAME

-- IS_NULLABLE returns yes or no depending on null or not null
Comment

get table column names sql

SELECT      COLUMN_NAME AS 'ColumnName'
FROM        INFORMATION_SCHEMA.COLUMNS 
WHERE 
TABLE_NAME LIKE '%assembly_armatureassy_tbl%' 
and COLUMN_NAME LIKE '%supplied%'
Comment

PREVIOUS NEXT
Code Example
Sql :: add constraint fk 
Sql :: install mysql powershell 
Sql :: alter user root mysql 
Sql :: oracle alter sequence restart start with 
Sql :: SELECT User,Host FROM mysql.user; 
Sql :: delete a view sql 
Sql :: node and mysql like 
Sql :: oracle list invalid password ORA-01017 
Sql :: error code 1175 mysql fix 
Sql :: how to see logical reads in sql server 
Sql :: mysql show foreign keys 
Sql :: sql headers delphi 
Sql :: sql set auto increment back to 0 
Sql :: copy from folders in sql server 
Sql :: drop temp table sql 
Sql :: oracle source query 
Sql :: role does not exist psql 
Sql :: sql set no lmit 
Sql :: mysql find non alphanumeric characters 
Sql :: xampp mysql database server is not starting mac m1 
Sql :: display total number of tables in mysql 
Sql :: insert into table from another table mysql 
Sql :: laravel paginate raw sql 
Sql :: select from array in psql 
Sql :: FIND OUT THE NAME HIGHEST SALARY SQL 
Sql :: oracle trace session 
Sql :: mariadb number format 
Sql :: sql to char 
Sql :: how to check schema privileges in oracle 
Sql :: mysql safe mode 
ADD CONTENT
Topic
Content
Source link
Name
3+2 =