0

I have in mind something like this: Let's say there is a

Select Client_name
From Clients_Master_Table
where Client_Name = 'DS_Store';

So, here's how to use 'DS_Store' which is given from the table as a value for the command:

As if to do

Select DS_Store
From DS_Table;

1 Answers1

0

You probably want IN:

Select Client_name
From Clients_Master_Table
where Client_Name IN (Select DS_Store from DS_Table)
jarlh
  • 42,561
  • 8
  • 45
  • 63