Oracle 中 in 的用法
1、in/not in 的作用: (1)in 常用于条件表达式(where)中,它的作用是查询某个范围内的数据。字段值只要满足这个范围之内的任意一个即可 (2)not in 作用是查询不在某个范围内的数据,字段值同时不满这个范围的所有值。2、语法:(1)select * from TableName(表名) where 字段 in (value1,value2,…);(2)select * f
1、in/not in 的作用:
(1)in 常用于条件表达式(where)中,它的作用是对某个范围内的数据进行操作,查询或删除。字段值只要满足这个范围之内的任意一个即可
(2)not in 作用是查询不在某个范围内的数据,字段值同时不满这个范围的所有值。
2、语法:
2.1 查询
(1)select * from TableName(表名) where 字段 in (value1,value2,…);
(2)select * from TableName(表名) where 字段 not in (value1,value2,…);
(3)select 字段1,字段2,… from 表名 where 字段 in/not in (value1,value2,…);
2.2 删除
(1)delete from 表名 where 字段 in/not in (value1,value2,…);
3、使用示例:
3.1 in 用于查询记录
(1)查询 t_hero 表中的所有记录
(2)查询 keyid 等于 ( 21,16,7)这三个值之一的所有记录,只要满足这三个之一的就可以查询出来。
(3)查询 keyid 不在 ( 21,16,7)范围内的所有记录。
3.2 in 用于删除记录
(1)查询 t_hero 表中的所有记录,现在有7条记录
(2)删除 keyid =(14,15)的这两条记录
更多推荐
所有评论(0)