如何将数据从表中使用数据作为SQL中另一个命令的值



我想到了这样的事情:假设有一个

Select Client_name
From Clients_Master_Table
where Client_Name = 'DS_Store';

所以,这是使用" DS_Store"的方法,该方法是从表中给出的命令值:

好像要做

Select DS_Store
From DS_Table;

您可能想要IN

Select Client_name
From Clients_Master_Table
where Client_Name IN (Select DS_Store from DS_Table)

相关内容

  • 没有找到相关文章

最新更新