如有一个student 学生表
student表中有字段 课程字段 分别用 1,2,3,4,5,6,7 表示不通的7门课程
CREATE TABLE student
(
name varchar(255),
course varchar(255)
)
insert intostudent (name,course)
values ('张三','1,7');
问题一、判断 张三 是否选择了 课程 2
select * from
where name = '张三'
and string_to_array(course,',') @> array['2']
问题二、判断张三是否同时选择了课程2,6
select * from
where name = '张三'
and string_to_array(course,') @> array['2','6']
原文链接:https://www.f2er.com/postgresql/193731.html