in()

in_()用于查找所有在指定列(column)上数值存在于指定值列表(arry)中的记录

案例教程

案例1 (使用select)#

1create table
2countries (id int8 primary key, name text);
3
4insert into
5countries (id, name)
6values
7(1, 'Afghanistan'),
8(2, 'Albania'),
9(3, 'Algeria');

参数

  • 列(column)[必要参数]
    string类型

    要过滤的列

  • 值(value)[必要参数]
    任意类型数组

    用来过滤的值