我想在MySQL中创建一个QualTimeMe()函数,就像M$SQLServer中存在的函数一样。
这就是它的作用:
QUOTENAME returns a Unicode string with the delimiters added to make the input string a valid identifier. The QUOTENAME function uses this syntax:
QUOTENAME ( 'string' [ , 'delimiter' ] )
You pass QUOTENAME a string to be delimited and a one-character string to use as the delimiter. The delimiter can be a square bracket or a single or double quotation mark.
这可能吗?
最佳答案
你可以从这样开始-从eggyal的评论开始
DROP FUNCTION IF EXISTS QUOTENAME;
CREATE FUNCTION QUOTENAME (s varchar(50), d CHAR(1))
RETURNS VARCHAR(52)
RETURN CONCAT (d, REPLACE(s, d, CONCAT(d,d)), d);
然后添加特殊情况和附加功能。
关于mysql - 如何在mySQL中创建QUOTENAME函数,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/10683365/