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

Do you know spatial data types - geometry and geography in sql server 2008?

0 Answers  


what are the new features introduced in sql server 2000? : Sql server database administration

0 Answers  


What is the difference between seek predicate and predicate?

0 Answers  


Explain go command in sql server?

0 Answers  


What command is used to delete a table from the database in the sql server and how?

0 Answers  






Explain what is cte (common table expression)?

0 Answers  


How can we improve performance by using SQL Server profiler?

0 Answers   QuestPond,


How to sort the query output with order by clauses in ms sql server?

0 Answers  


How to test subquery results with the exists operator?

0 Answers  


Which TCP/IP port does SQL Server run on?

2 Answers  


What is coalesce and check constraint in sql server?

0 Answers  


Explain user defined views?

0 Answers  


Categories