作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我需要一些帮助。我有这个简单的 mysql 查询:
select '1,2,3,4,5,6' as Col1 from dual;
和表1:
Col1
1,2,3,4,5,6
我还有另一个表2:
service_id service_name
1 Service1
2 Service2
我尝试了下一个查询但不起作用:
select service_name from table2 where service_id in (select col1 from table1)
如有任何帮助,我们将不胜感激!
最佳答案
试试这个:
示例数据:
create table `dual` (Col1 varchar(100));
insert into `dual` values ('1,2,3,4,5,6');
create table table2 (service_id int, service_name varchar(100));
insert into table2 values
(1, 'Service1'),
(2, 'Service2');
T-SQL:
select service_name from table2 t2
where exists(
select 1 from `dual` d
where locate(concat(',', t2.service_id, ','), concat(',', d.Col1, ',')) > 0
);
关于mysql - 如何将Mysql的一行显示为多行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50999139/
我是一名优秀的程序员,十分优秀!