select top(1) * from t_stock_order where
f_billno not in( select top -1 f_billno from t_stock_order)
这个 -1这里有问题,LZ想问什么呢。
你这大概意思是指,查询t_stock_order f_billno不在前多少的f_billno。 这个大多用于分页。
这是什么意思啊
select top -1 f_billno from t_stock_order 怎么有-1啊,肯定会报错的啊
top 后面的数必须是正整数吧,你想问什么
啥情况top -1?