SQL Query to select N number of records from database using select query.
set rowcount 10
Select * from EMP_TABLE
Showing posts with label SQL Query. Show all posts
Showing posts with label SQL Query. Show all posts
Monday, April 13, 2009
SQL Query to Find Column in database table.
Using This Query you will get a list of Tables in database which have the specified column.
select * from sysobjects where id in (select id from syscolumns where name like 'USER_ID')
select * from sysobjects where id in (select id from syscolumns where name like 'USER_ID')
Labels:
columns,
database query for column,
find columns,
SQL Query,
tables
Subscribe to:
Posts (Atom)