您的位置:首页技术文章
文章详情页

MYSQL 运算的问题

【字号: 日期:2022-06-18 17:02:48浏览:10作者:猪猪

问题描述

我的某个MYSQL数据表A中有两个字段分别是 type 和 param。我需要当type的值为1的时候从表B中取一个值,当type的值为2的时候从表C中取一个值。

要用一条语句来实现要怎么写(其实主要是在SELECT和FROM之间做一个type值的判断)

问题解答

回答1:

方法一:

select case when a.type=1 then b.col else c.col endfrom a,b,c

方法二:

select a.type, b.colfrom a, bwhere a.type=1unionselect a.type, c.colfrom a, cwhere a.type=2回答2:

select case when type = 1 then a.*** else b.*** end as *** from a,b,c ...

相关文章: