select * from t_user where name not in ('李四')
这样也可以查除了name是李四的总条数
select COUNT(*) from t_user where name not in ('李四')
第一种
第二种
第三种
查询为null的时候
欢迎分享,转载请注明来源:内存溢出
select * from t_user where name not in ('李四')
这样也可以查除了name是李四的总条数
select COUNT(*) from t_user where name not in ('李四')
第一种
第二种
第三种
查询为null的时候
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)