Andrew Bullock
Andrew Bullock

Reputation: 37378

How to create custom functions in SQLite

Can you create functions in SQLite like you can in MSSQL?

If so, how? What is the syntax?

Thanks

Upvotes: 78

Views: 125491

Answers (3)

Roland Bouman
Roland Bouman

Reputation: 31951

SQLite does not have a stored function/stored procedure language. So CREATE FUNCTION does not work. What you can do though is map functions from a c library to SQL functions (user-defined functions). To do that, use SQLite's C API (see: http://www.sqlite.org/c3ref/create_function.html)

If you're not using the C API, your wrapper API may define something that allows you access to this feature, see for example:

Upvotes: 86

Anton Zhiyanov
Anton Zhiyanov

Reputation: 382

You can write arbitrary functions in SQL with the define extension:

-- define a function to sum the numbers 1..n
select define('sumn', ':n * (:n + 1) / 2');

-- use it as a regular function
select sumn(3);
6
select sumn(5);
15

Upvotes: 7

donnadulcinea
donnadulcinea

Reputation: 1874

This could be useful to many: in SQLiteStudio it is possible to define new functions and collations easily from interface through a sql built-in plugin for example.

https://github.com/pawelsalawa/sqlitestudio/wiki/Official_plugins#sql-built-in

Through the function editor.

Upvotes: 9

Related Questions