中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

MySQL如何實現oracle函數INSTR的功能

發布時間:2020-05-29 14:32:29 來源:網絡 閱讀:368 作者:三月 欄目:關系型數據庫

下文我給大家簡單講講關于MySQL如何實現oracle函數INSTR的功能,大家之前了解過相關類似主題內容嗎?感興趣的話就一起來看看這篇文章吧,相信看完MySQL如何實現oracle函數INSTR的功能對大家多少有點幫助吧。

Oracle 里用了幾次如下的調用,

SQL> select instr('This is belong to you, but not to me.','to',1,1) as pos from dual;
                 POS                              
--------------------                              
                  16                              
已用時間:  00: 00: 00.00
SQL> select instr('This is belong to you, but not to me.','to',1,2) as pos from dual;
                 POS                              
--------------------                              
                  32                              
已用時間:  00: 00: 00.00
SQL> select instr('This is belong to you, but not to me.','belong',-1,1) as pos from dual;
                 POS                              
--------------------                              
                   9                              
已用時間:  00: 00: 00.00
SQL> select instr('This is belong to you, but not to me.','belong',-1,2) as pos from dual;
                 POS                              
--------------------                              
                  0                              
已用時間:  00: 00: 00.00

MySQL里效果如下,

mysql> select func_instr_oracle('This is belong to you, but not to me.','to',1,1) as pos;
+------+
| pos  |
+------+
|   16 |
+------+
1 row in set (0.00 sec)
mysql> select func_instr_oracle('This is belong to you, but not to me.','to',1,2) as pos;
+------+
| pos  |
+------+
|   32 |
+------+
1 row in set (0.00 sec)
mysql> select func_instr_oracle('This is belong to you, but not to me.','belong',-1,1) as pos;
+------+
| pos  |
+------+
|    9 |
+------+
1 row in set (0.00 sec)
mysql> select func_instr_oracle('This is belong to you, but not to me.','belong',-1,2) as pos;
+------+
| pos  |
+------+
|    0 |
+------+
1 row in set (0.00 sec)

附上函數func_instr_oracle的代碼:

DELIMITER $$
USE `oracle12c`$$
DROP FUNCTION IF EXISTS `func_instr_oracle`$$
CREATE DEFINER=`root`@`localhost` FUNCTION `func_instr_oracle`(
    f_str VARCHAR(1000), -- Parameter 1
    f_substr VARCHAR(100),  -- Parameter 2
    f_str_pos INT, -- Postion
    f_count INT UNSIGNED -- Times
    ) RETURNS INT(10) UNSIGNED
BEGIN
      -- Created by ytt. Simulating Oracle instr function.
      -- Date 2015/12/5.
      DECLARE i INT DEFAULT 0; -- Postion iterator
      DECLARE j INT DEFAULT 0; -- Times compare.
      DECLARE v_substr_len INT UNSIGNED DEFAULT 0; -- Length for Parameter 1.
      DECLARE v_str_len INT UNSIGNED DEFAULT 0;  -- Length for Parameter 2.
      SET v_str_len = LENGTH(f_str); 
      SET v_substr_len = LENGTH(f_substr);
      -- Unsigned.
      IF f_str_pos > 0 THEN
        SET i = f_str_pos;
        SET j = 0;
        WHILE i <= v_str_len
        DO
          IF INSTR(LEFT(SUBSTR(f_str,i),v_substr_len),f_substr) > 0 THEN
            SET j = j + 1;
            IF j = f_count THEN
              RETURN i;
            END IF;
          END IF;
          SET i = i + 1;
        END WHILE;
      -- Signed.
      ELSEIF f_str_pos <0 THEN
        SET i = v_str_len + f_str_pos+1;
        SET j = 0;
        WHILE i <= v_str_len AND i > 0 
        DO
          IF INSTR(RIGHT(SUBSTR(f_str,1,i),v_substr_len),f_substr) > 0 THEN
            SET j = j + 1;
            IF j = f_count THEN
              RETURN i - v_substr_len + 1;
            END IF;
          END IF;
          SET i = i - 1;
        END WHILE;
      -- Equal to 0.
      ELSE
        RETURN 0;
      END IF;
      RETURN 0;
    END$$
DELIMITER ;

大家覺得MySQL如何實現oracle函數INSTR的功能這篇文章怎么樣,是否有所收獲。如果想要了解更多相關,可以繼續關注我們的行業資訊板塊。 

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

河曲县| 祁东县| 宁强县| 南澳县| 台北县| 马边| 偏关县| 依安县| 响水县| 鄂尔多斯市| 兴化市| 微山县| 南乐县| 毕节市| 黔江区| 封丘县| 正定县| 施甸县| 安远县| 邢台县| 卓尼县| 来安县| 峨眉山市| 勃利县| 英德市| 和林格尔县| 商南县| 额尔古纳市| 威海市| 灵寿县| 襄樊市| 兰州市| 惠东县| 镇远县| 武隆县| 贞丰县| 蓬安县| 湘乡市| 莱州市| 嘉善县| 马公市|