like()

like()用于查找所有在所述列(column)上的值与提供的 模板(pattern)相符的记录(区分大小写)。

案例教程

案例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类型

    要过滤的列

  • 模式(pattern)[必要参数]
    string类型

    与之匹配的模式