SQL多个嵌套查询和别名

时间:2015-07-02 11:51:32

标签: sql subquery alias

我有多个嵌套查询,我需要添加一个别名。我该怎么办?

这是一个例子:

Select * from table where Value IN (
 Select Value1 from table where Value IN (
  Select Value2 from table where Value IN (
   Select Value3 from table where A = B)))

我需要可视化所有第一个选择和所有VALUE*

我该怎么做?也许用别名?

1 个答案:

答案 0 :(得分:0)

此查询具有相同的输出。如果您正在寻找其他结果,请解释更多。

Select * from table where A = B and Value =Value1 and Value1 =Value2 and Value2 =Value3