I have two databases on my server with different names, but both of which have a table titled Clients
. When I run an information schema query it returns columns from both databases, so I am getting duplicates when I just want one.
Example:
SELECT COLUMN_NAME FROM information_schema.COLUMNS
WHERE table_name = 'Clients'
I'm getting duplicate columns so First_Name
is showing up twice because it is returning the columns from the Clients
table in both databases.
My question is:
is there a way of specifying which database to query in the SELECT statements so that it only returns the column from the one I want? For example:
SELECT COLUMN_NAME FROM information_schema.COLUMNS
WHERE db_name = 'DB1' AND table_name = 'Clients'
You're looking for the
TABLE_SCHEMA
column.Just as an FYI, this is what I get when I do
desc INFORMATION_SCHEMA.COLUMNS;