• 有点奇怪!SQL中子查询存在语法错误居然能返回结果?!


    您可以试试在数据库Northwind执行语句1:
    语句1:select OrderId from Products where OrderID = 10250
    结果:
    消息 207,级别 16,状态 1,第 1 行
    列名 'OrderID' 无效。
    消息 207,级别 16,状态 1,第 1 行
    列名 'OrderId' 无效。

    语句2:select * from [dbo].[Order Details] where OrderId In (select OrderId
    from Products where OrderID = 10250)
    结果:
    10250 41 7.70 10 0
    10250 51 42.40 35 0.15
    10250 65 16.80 15 0.15
    上述结果是不是让你大跌眼镜,但却是真实存在的情况!

    究其原因,主要是SQL自动解析列名(列OrderID在表Products中找不到就到[Order Details]中找,结果找到了,当然根据作用域先后顺序)
    如果试试把上面语句改为如下:
    select * from [dbo].[Order Details] where OrderId In (select OrderId
    from Products p where p.OrderID = 10250)
    就能看到报错了。那么前面能返回结果的错误SQL语句究竟是如何执行的呢?
    其实,首先,OrderID由于不在Products表中,因此它把该条件直接作用到[Order Detail]表上从而返回结果。

  • 相关阅读:
    hibernate10--命名查询
    mybatis13--2级缓存
    mybatis12--一级缓存
    hibernate09--连接查询
    hibernate08--OpenSessionInView
    mybatis11--多对多关联查询
    mybatis10--自连接多对一查询
    mybatis09--自连接一对多查询
    mybatis08--关联查询多对一
    Oracle job启动与关闭
  • 原文地址:https://www.cnblogs.com/chriskwok/p/1385306.html
Copyright © 2020-2023  润新知