other DB 包括 mysql、达梦
一
pg: 支持ilike ,ilike 模糊查询,但在匹配字符串时不区分大小写
例如 where name ilike '%A%
other: like 模糊查询,在匹配字符串时不区分大小写
二
pg: 支持 distinct on,它的主要作用是在查询结果中,根据指定的一个或多个列来对结果进行去重,并且返回每组中的第一条记录
other:使用group by替换
other DB 包括 mysql、达梦
pg: 支持ilike ,ilike 模糊查询,但在匹配字符串时不区分大小写
例如 where name ilike '%A%
other: like 模糊查询,在匹配字符串时不区分大小写
pg: 支持 distinct on,它的主要作用是在查询结果中,根据指定的一个或多个列来对结果进行去重,并且返回每组中的第一条记录
other:使用group by替换