<i id='ryL3E'><tr id='ryL3E'><dt id='ryL3E'><q id='ryL3E'><span id='ryL3E'><b id='ryL3E'><form id='ryL3E'><ins id='ryL3E'></ins><ul id='ryL3E'></ul><sub id='ryL3E'></sub></form><legend id='ryL3E'></legend><bdo id='ryL3E'><pre id='ryL3E'><center id='ryL3E'></center></pre></bdo></b><th id='ryL3E'></th></span></q></dt></tr></i><div id='ryL3E'><tfoot id='ryL3E'></tfoot><dl id='ryL3E'><fieldset id='ryL3E'></fieldset></dl></div>
    <tfoot id='ryL3E'></tfoot>

        • <bdo id='ryL3E'></bdo><ul id='ryL3E'></ul>

      1. <small id='ryL3E'></small><noframes id='ryL3E'>

      2. <legend id='ryL3E'><style id='ryL3E'><dir id='ryL3E'><q id='ryL3E'></q></dir></style></legend>

        在 MySQL 中创建一个带有可选参数的函数

        时间:2023-08-19
        <legend id='iwmx9'><style id='iwmx9'><dir id='iwmx9'><q id='iwmx9'></q></dir></style></legend>

          <bdo id='iwmx9'></bdo><ul id='iwmx9'></ul>

                • <tfoot id='iwmx9'></tfoot>
                    <tbody id='iwmx9'></tbody>
                • <i id='iwmx9'><tr id='iwmx9'><dt id='iwmx9'><q id='iwmx9'><span id='iwmx9'><b id='iwmx9'><form id='iwmx9'><ins id='iwmx9'></ins><ul id='iwmx9'></ul><sub id='iwmx9'></sub></form><legend id='iwmx9'></legend><bdo id='iwmx9'><pre id='iwmx9'><center id='iwmx9'></center></pre></bdo></b><th id='iwmx9'></th></span></q></dt></tr></i><div id='iwmx9'><tfoot id='iwmx9'></tfoot><dl id='iwmx9'><fieldset id='iwmx9'></fieldset></dl></div>

                  <small id='iwmx9'></small><noframes id='iwmx9'>

                • 本文介绍了在 MySQL 中创建一个带有可选参数的函数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  我想在 MySQL 中创建一个带有可选参数的函数.例如,我想创建计算其参数平均值的函数.我创建了一个有五个参数的函数,但是当用户只向函数传递两个参数时,它仍然应该运行并返回两个参数的平均值.

                  I want to create a function with optional arguments in MySQL. For instance, I want to create function that calculates the average of its arguments. I create a function of five arguments, but when user passes just two arguments to the function then it should still run and return the average of the two arguments.

                  推荐答案

                  您不能在 MySQL 存储过程中设置可选参数.
                  但是,您可以在 MySQL UDF 中设置可选参数.

                  You cannot set optional parameters in MySQL stored procedures.
                  You can however set optional parameters in a MySQL UDF.

                  你知道 MySQL 有一个 AVG 聚合函数?

                  You do know that MySQL has an AVG aggregate function?

                  解决方法如果您可以面对这种变通方法的丑陋之处,这里的示例代码使用逗号分隔的字符串作为输入并返回平均值.

                  Workaround If you can face the ugliness of this workaround here's samplecode that uses a comma separated string with values as input and returns the average.

                  DELIMITER $$
                  
                  CREATE FUNCTION MyAvg(valuestr varchar) RETURNS float
                  BEGIN
                    DECLARE output float;
                    DECLARE arg_count integer;
                    DECLARE str_length integer;
                    DECLARE arg float;
                    DECLARE i integer;
                  
                    SET output = NULL;
                  
                    SET i = LENGTH(valuestr);
                    IF i > 0 THEN BEGIN 
                  
                      SET arg_count = 1;
                      WHILE i > 0 DO BEGIN
                        IF MID(valuestr, i, 1)
                        SET i = i - 1;
                      END; END WHILE;
                  
                      /* calculate average */
                      SET output = 0;
                      SET i = arg_count;
                      WHILE i > 0 DO BEGIN
                        SET arg = SUBSTRING_INDEX( 
                                    SUBSTRING_INDEX(valuestr, ',' , i)
                                    , ',', -1 );
                        SET output = output + arg;
                        SET i = i - 1; 
                      END; END WHILE;       
                      SET output = output / arg_count;
                  
                    END; END IF;    
                    RETURN output;
                  END $$
                  
                  DELIMITER ;
                  

                  使用 concat_ws 提供函数.

                  Use concat_ws to feed the function.

                  SELECT MyAvg(CONCAT_WS(',',100,200,300,500)) AS test;
                  

                  您还可以编写 UDFC(++) 或 Delphi/Lazarus

                  这篇关于在 MySQL 中创建一个带有可选参数的函数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:当坐标为长/纬度时,Mysql 几何 AREA() 函数返回什 下一篇:存储过程参数“NULL"或“= NULL"

                  相关文章

                  最新文章

                • <i id='1STyc'><tr id='1STyc'><dt id='1STyc'><q id='1STyc'><span id='1STyc'><b id='1STyc'><form id='1STyc'><ins id='1STyc'></ins><ul id='1STyc'></ul><sub id='1STyc'></sub></form><legend id='1STyc'></legend><bdo id='1STyc'><pre id='1STyc'><center id='1STyc'></center></pre></bdo></b><th id='1STyc'></th></span></q></dt></tr></i><div id='1STyc'><tfoot id='1STyc'></tfoot><dl id='1STyc'><fieldset id='1STyc'></fieldset></dl></div>
                  1. <small id='1STyc'></small><noframes id='1STyc'>

                      <tfoot id='1STyc'></tfoot>
                      <legend id='1STyc'><style id='1STyc'><dir id='1STyc'><q id='1STyc'></q></dir></style></legend>
                      • <bdo id='1STyc'></bdo><ul id='1STyc'></ul>