您可以像在MSSQL中一样在SQLite中创建函数吗?
如果是这样,怎么样?语法是什么?
由于
答案 0 :(得分:48)
SQLite没有存储的函数/存储过程语言。所以CREATE FUNCTION
不起作用。你可以做的是从c库到SQL函数(用户定义的函数)的映射函数。为此,请使用SQLite的C API(请参阅:http://www.sqlite.org/c3ref/create_function.html)
如果您没有使用C API,您的包装器API可能会定义允许您访问此功能的内容,例如参见:
sqlite_create_function()
(http://www.php.net/manual/en/function.sqlite-create-function.php)sqlite3.create_function()
(http://docs.python.org/2/library/sqlite3.html#sqlite3.Connection.create_function)$dbh->func(_$name,_$argc,_$func_ref,_"create_function")
(https://metacpan.org/pod/DBD::SQLite#dbh-sqlite_create_function-name-argc-code_ref)答案 1 :(得分:1)
这对许多人来说很有用:在 SQLiteStudio 中,可以通过sql内置插件轻松地从界面定义新的函数和排序规则。
https://github.com/pawelsalawa/sqlitestudio/wiki/Official_plugins#sql-built-in
通过功能编辑器。