-- 对比 数据 是否 相同
select * from [dbo].[ProjecrInfo] where Project_state=‘已审核‘ -- 查询 已经 审核 有多少数据
-- 每次 按照 6行查询 第一个 6 是 每次 显示 6行数 据 可以改 成 你想 每次按照 几行查询 第二个 数字是 分页
select top 6 * from ProjecrInfo where ProjectID not in
(select top 12 ProjectID from ProjecrInfo where Project_state =‘已审核‘ order by ProjectID ) and Project_state =‘已审核‘ order by ProjectID
原文地址:https://www.cnblogs.com/whatarey/p/8952015.html
时间: 2024-10-10 22:45:53