📌  相关文章
📜  子查询返回超过 1 个值.当子查询跟随 =、!=、<、<=、>、>= 或子查询用作表达式时,这是不允许的. - Javascript代码示例

📅  最后修改于: 2022-03-11 15:04:17.489000             🧑  作者: Mango

代码示例1
select * from dbo.books where isbn IN (select isbn from dbo.lending where (act between @fdate and @tdate) and (stat ='close'))