7

我正在尝试做一些我认为很简单的事情,但我被困住了。我基本上想从多个地址部分字段创建一个地址字段,使用 IF 语句来使用地址或交叉点。这是我创建该领域的声明:

        CONCAT(loc_name,'\n',
            IF ( add_number != '' && add_street != '' ) THEN 
                CONCAT(add_number,' ',add_street,'\n')
            ELSEIF ( x_street_1 != '' && x_street_2 != '' ) THEN 
                CONCAT(x_street_1,' & ',x_street_2,'\n')
            END IF
        ,city,', ', 
            IF ( state != '') THEN 
                CONCAT(state,' ',country,'\n')
            ELSEIF ( x_street_1 != '' && x_street_2 != '' ) THEN 
                CONCAT(country,'\n')
            END IF
        ) AS loc_info

但它根本不喜欢我正在做的事情,它会在以下位置引发错误:

"You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ') THEN \n\t\t\t\t\t\tadd_number,' ',add_street,'\n'\n\t\t\t\t\tELSEIF ( x_street_1 != '' && x_"

这似乎不喜欢我的空字段('')表示法。但我不知道为什么。我不能像这样在 CONCAT 中使用 IF 语句吗?

感谢您的任何见解。

4

3 回答 3

12

IIRC,您要使用的语法是

IF(condition, expression_if_true, expression_if_false)

我可能是错的,但你可能想试试。

于 2013-01-25T17:14:20.707 回答
5

语法不正确。你想使用CASE

SET @loc_name = 'Location';
SET @add_street = 'Add Street';
SET @add_number = '10';
SET @x_street_1 = 'Street 1';
SET @x_street_2 = 'Street 2';
SET @city = 'City';
SET @state = 'State';
SET @country = 'Country';

SELECT Concat(@loc_name, '\n', CASE 
                                 WHEN @add_number != '' 
                                      AND @add_street != '' THEN 
                                 Concat(@add_number, ' ', @add_street, '\n') 
                                 WHEN @x_street_1 != '' 
                                      AND @x_street_2 != '' THEN 
                                 Concat(@x_street_1, ' & ', @x_street_2, 
                                 '\n') 
                               end, @city, ', ', CASE 
                                                   WHEN @state != '' THEN 
       Concat(@state, ' ', @country, '\n') 
              WHEN ( @x_street_1 != '' 
                     AND @x_street_2 != '' ) THEN Concat(@country, '\n') 
                                                 end) AS loc_info 

结果

| LOC_INFO |
-----------------------------------------------------------
| 地点
10 加街
城市,州国家
 |

只需找到并替换@.

于 2013-01-25T17:16:12.593 回答
2

这也可能有帮助:

CONCAT(loc_name,'\n',
            IF ( add_number != '' && add_street != '' , 
                CONCAT(add_number,' ',add_street,'\n'),
                IF ( x_street_1 != '' && x_street_2 != '' , 
                   CONCAT(x_street_1,' & ',x_street_2,'\n'),""
                   )
               ),

        city,
         ',' , 
            IF ( state != '',
                CONCAT(state,' ',country,'\n'),
                IF ( x_street_1 != '' && x_street_2 != '' , 
                   CONCAT(country,'\n'),""
                   )
               ) AS loc_info

还有你在这里比较state != ''的是它与空值吗?
如果是这样,这会给你不正确的答案,你必须使用它state IS NOT NULL来代替。

于 2013-01-25T18:01:33.190 回答