Search notes:

SQLite function: sqlite_version

sqlite_version() returns a string that indicates the version of the running SQLite library (it basically calls sqlite3_libversion().
select sqlite_version();
--
-- 3.27.2
Github repository about-sqlite, path: /functions/sqlite_version.sql
The version is also printed if the sqlite3 executable is started with the --version flag.

See also

determining SQLite version with DBD::SQLite and the same function in the Python module sqlite3.
functions
Determine database versions

Index