Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/dart/3.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
MYSQL:创建具有多个返回的函数_Mysql_Function - Fatal编程技术网

MYSQL:创建具有多个返回的函数

MYSQL:创建具有多个返回的函数,mysql,function,Mysql,Function,为什么这个功能不起作用 CREATE FUNCTION build_address(street VARCHAR(50), city VARCHAR(30), state CHAR(2), zipcode VARCHAR(10), country VARCHAR(10)) RETURNS VARCHAR(130) IF (street != '', IF (city != '', IF (state != '', IF (zipcode != '', IF

为什么这个功能不起作用

CREATE FUNCTION build_address(street VARCHAR(50), city VARCHAR(30), state CHAR(2), zipcode VARCHAR(10), country VARCHAR(10)) RETURNS VARCHAR(130)
    IF (street != '',
    IF (city != '',
    IF (state != '',
    IF (zipcode != '',
    IF (country != '',
    RETURN CONCAT(street, ', ', city, ', ', state, ' ', zipcode, ' ', country),
    RETURN CONCAT(street, ', ', city, ', ', state, ' ', zipcode)),
    RETURN CONCAT(street, ', ', city, ', ', state)),
    RETURN CONCAT(street, ', ', city)),
    RETURN CONCAT(street),
    IF (city != '',
    IF (state != '',
    IF (zipcode != '',
    IF (country != '',
    RETURN CONCAT(city, ', ', state, ' ', zipcode, ' ', country),
    RETURN CONCAT(city, ', ', state, ' ', zipcode)),
    RETURN CONCAT(city, ', ', state)),
    RETURN CONCAT(city),
    IF (state != '',
    IF (zipcode != '',
    IF (country != '',
    RETURN CONCAT(state, ' ', zipcode, ' ', country),
    RETURN CONCAT(state, ' ', zipcode)),
    RETURN CONCAT(state),
    IF (zipcode != '',
    IF (country != '',
    RETURN CONCAT(zipcode, ' ', country),
    RETURN CONCAT(zipcode),
    IF (country != '',
    RETURN CONCAT(country),
    RETURN '')))))))));
我大约99%确定括号在正确的位置。你可以再检查一遍,但我认为这不是问题所在。我认为问题在于,它对我有多个返回声明感到愤怒,但它们都在各自的范围内。据我所知,这应该很有效

我不知道这是否重要,但我正在使用phpMyAdmin,这仍然在MySQL 5.6.21上

我得到以下错误:

1064-您的SQL语法有错误;检查与您的MariaDB服务器版本对应的手册,以了解在“RETURN CONCAT(street)”、“city”、“state”、“zipcode”、“country)”附近使用的正确语法, 我们在7号线

你把和搞混了。你需要后者

而且,这太复杂了。没有一个理智的人会追随那些疯狂的插入语。这可以写得简单得多:

create function build_address(
    street varchar(50),
    city varchar(30),
    state char(2),
    zipcode varchar(10),
    country varchar(10)
)
returns varchar(130) deterministic
begin
  declare ret varchar(130);
  declare sep varchar(10);

  set ret = '';
  set sep = '';

  if street is not null and street != '' then
    set ret = concat(ret, sep, street);
    set sep = ', ';
  end if;

  if city is not null and city != '' then
    set ret = concat(ret, sep, city);
    set sep = ', ';
  end if;

  if state is not null and state != '' then
    set ret = concat(ret, sep, state);
    set sep = ' ';
  end if;

  if zipcode is not null and zipcode != '' then
    set ret = concat(ret, sep, zipcode);
    set sep = ' ';
  end if;

  if country is not null and country != '' then
    set ret = concat(ret, sep, country);
    set sep = ' ';
  end if;

  return ret;
end;

顺便问一下,你读过吗?试图将地址拆分成这样的组件基本上是一个注定失败的想法。将有人无法以该格式填写其地址。最好的方法是简单地提供一个文本区域,用户可以在其中自由填写地址。

您想在这里做什么?选择街道、城市、州、zipcode和国家,并构建一个地址字符串。很多地址可能缺少不同的部分,所以根据其中的信息,它将以不同的方式构建地址。为什么?如果条件正确,它应该转到第一个return语句,如果条件错误,它应该跳过它并转到下一个语句。我不明白if语句在SQL中是如何工作的?