lt()

lt()用于查找所有在所述列(column)上的值小于指定值(value)的记录。

案例教程

案例1 (使用select)#

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

参数说明

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

    要过滤的列

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

    用来过滤的值