摘要:
1.sql server 查询字段不为null的所有数据: 首先会想到 select * from table where column<>null //错误 null 在数据库中代表空 不能用来比较 专门用于比较为null,不为null的关键词 is not null,is null select 阅读全文
摘要:
sql 数据库 在使用 insert into 表名 select union all 时报错 原因: 在插入该表时,该表 有一个设自增长的字段 解决: 1. 设置允许自增长字段插入数据 set IDENTITY_INSERT dbo.SysBillStatusFuncItem ON 在插入元素后, 阅读全文
摘要:
/* top 分页top 3* 一页3条数据 取第一页的数据not in ....截掉前4页数据 //去第5页的数据select top 3 * from dbo.student WHERE ID NOT IN(SELECT TOP(3*4) ID FROM dbo.student);*/ /*RO 阅读全文