繁体   English   中英

MySQL if / else or select if(contiton,'true','false'); - 语法问题

[英]MySQL if / else or select if(contiton,'true','false'); - Syntax-problems

当我使用

select if (1=1,'true','false');

然后一切正常,我收到“真实”但如果我尝试

select if (1=1,(select * from table1), (select * from table2));`

我在 mysql 中收到语法错误!

if condition then <SQL-Expression1> else <SQL-Expression2> end if;

我有同样的问题,当 SQL 表达式很复杂时

select * from table1!

如果我使用复杂的 SQL 表达式

select * from table1 

或者

insert into table1 (select field1 from table2 where 
                    field1>(select Max(field) from table1));

然后我总是收到一个语法错误,当这样的表达式包含在 if/else-Statement 中时!

我怎样才能适应它,可以选择复杂的 sql-Statements?

我的问题是:

我做了2张桌子,比如

create table1 (x1 int4, x2 int4, x3 int4);
create table2 (x int4);
insert into table1 values(1,2,3);
insert into table1 values(4,0,5);

我想将 table1 转发到 table2

例如:

结果应该像这样在table2中

1
2
3
4
5

如果我用新行放大表 1

insert into table1 values (6,7,8);

那么 table2 应该更改为

1
2
3
4
5
6
7
8

我试图以这种方式做到这一点

select if ((select count(*) from table2)=0,
          (insert into table2 (select x1 from table1 where x1>0)),
          (insert into table2 (select x1 from table1 where 
                               x1>(select Max(x) from table1))));

x2 和 x3 也是如此。 但是出现语法错误!

如果我只使用

insert into table2 (select x1 from table1 where x1>(select Max(x) from table1));

如果 table1 不为空,则它有效,否则我必须这样做

insert into table2 (select x1 from table1 where x1>0);

SELECT 子句中的子查询可能只返回单个值; 即不超过一个结果,不超过一列。 您不能“欺骗”查询以返回不同数量的列。

此外,if-then 形式的“if”是为过程 sql 保留的; 用于存储过程、触发器等...

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM