SQLite Tutorial SQLite Advanced SQLite Database SQLite References

SQLite SQLITE_VERSION() Function



The SQLite SQLITE_VERSION() function returns the version string for the SQLite library that is running.

Syntax

SQLITE_VERSION()

Parameters

No parameter is required.

Return Value

Returns the version of the SQLite database.

Example:

The example below shows the usage of SQLITE_VERSION() function.

SELECT SQLITE_VERSION();

The above query will return the version string of the SQLite database and the output of the above query will be similar to:

SELECT SQLITE_VERSION();
Result: '3.38.1'

❮ SQLite Functions