i want table name basis on column name.

Answers were Sorted based on User's Feedback



i want table name basis on column name...

Answer / bobby

select * from information_schema.columns where
column_name='orderid'

The above query is used to find all the tables and views in
the Database which contain ‘orderId’ as column name.

But to find only the tables in the Database which
contain ‘orderId’ as column name, use the below query.


select col.table_name from information_schema.columns Col
join information_schema.tables Tab
on col.table_name=tab.table_name and
col.column_name='orderId'and tab.table_type='Base Table'

Is This Answer Correct ?    5 Yes 0 No

i want table name basis on column name...

Answer / saravanan p

Please find the below query in which, the tables are
selected depends the column name empNo.

select table_name from information_schema.columns where
column_name='empNo'

Is This Answer Correct ?    5 Yes 1 No

i want table name basis on column name...

Answer / debasis

yes . it's possible
create table emp10(emp10 varchar(20))

Is This Answer Correct ?    5 Yes 3 No

i want table name basis on column name...

Answer / gowthami radhakrishnan

yes.we can have a column name in the table name.
create table order
(
order varchar(10),
number int
)

Is This Answer Correct ?    2 Yes 2 No

i want table name basis on column name...

Answer / guruswamy

no,columnname and tablename not same to assign

Is This Answer Correct ?    0 Yes 6 No

Post New Answer

More SQL Server Interview Questions

Tell me what is sql profiler?

0 Answers  


What stored by the model?

0 Answers  


You want to implement the one-to-one relationship while designing tables. How would you do it?

0 Answers  


optimization techinques

0 Answers   Wipro,


Explain tablesample?

0 Answers  






What is snapshot replication?

0 Answers  


How we create SQL Server 2005 Reporting Services ? Give me Sample

0 Answers   HCL,


How to find out name of all employees who has salary less than 200 Rs.?

8 Answers  


how to determine the service pack currently installed on sql server? : Sql server database administration

0 Answers  


What's new in sql management studio for sql server? : sql server management studio

0 Answers  


When we should use and scope of @@identity?

0 Answers  


WHAT IS UNIQUE IDENTIFIER DATA TYPE?

2 Answers   Sparsh,


Categories