SQLite 3
SQLite is a C-language library that implements a small, fast, self-contained, high-reliability, full-featured, SQL database engine. SQLite is the most used database engine in the world. SQLite is built into all mobile phones and most computers and comes bundled inside countless other applications that people use every day.
SQLite generally follows PostgreSQL syntax. SQLite uses a dynamically and weakly typed SQL syntax that does not guarantee the domain integrity. This means that one can, for example, insert a string into a column defined as an integer. SQLite will attempt to convert data between formats where appropriate, the string "123" into an integer in this case, but does not guarantee such conversions and will store the data as-is if such a conversion is not possible.
SQLite is a popular choice as embedded database software for local/client storage in application software such as web browsers. It is arguably the most widely deployed database engine, as it is used today by several widespread browsers, operating systems, and embedded systems (such as mobile phones), among others. SQLite has bindings to many programming languages.
SQLite 3 - Popular snippets
- SQLite 3 SELECT SQLITE_VERSION()
last run:
2022-05-17 10:52:28
90
- SQLite 3 CREATE TABLE COUNT PRIMARY KEY UPDATE INSERT INTO SELECT
last run:
2022-01-17 05:12:47
16
- SQLite 3 CREATE TABLE INSERT INTO SELECT COUNT SUM GROUP BY
last run:
2022-02-15 14:28:49
13
- SQLite 3 4c10c0cff452b03ace41cd56b7939008
last run:
2021-09-04 17:40:15
10
- SQLite 3 CREATE TABLE PRIMARY KEY NOT FOREIGN KEY BETWEEN AND INSERT INTO EXEC SELECT WHERE LIKE ORDER BY GROUP BY SUM IN JOIN LEFT
last run:
2022-05-03 18:19:24
9
- SQLite 3 51be3895ff1ef66f432716f4ec4bb8dc
last run:
2021-09-08 14:10:20
9
- SQLite 3 CREATE TABLE INSERT INTO UPDATE WHERE
last run:
2022-05-01 06:01:07
8
- SQLite 3 4625b31005a03ac3c6f854c5df55e002
last run:
2022-03-26 16:26:55
8
- SQLite 3 CREATE TABLE INSERT INTO SELECT JOIN WHERE GROUP BY ORDER BY
last run:
2022-05-10 13:07:56
7
- SQLite 3 CREATE TABLE INSERT INTO SELECT JOIN WHERE AND
last run:
2022-05-10 03:08:35
6
SQLite 3 - New snippets
-
SQLite 3 CREATE TABLE INSERT INTO SELECT WHERE IN BETWEEN AND LIKE COUNT
added at:
2022-05-19 11:23:49
1
-
SQLite 3 DROP TABLE CREATE TABLE INSERT INTO SELECT WHERE IN BETWEEN AND LIKE COUNT
added at:
2022-05-19 11:23:37
1
-
SQLite 3 CREATE TABLE INSERT INTO
added at:
2022-05-19 01:44:19
1
-
SQLite 3 CREATE TABLE INSERT INTO SELECT WHERE IN BETWEEN AND LIKE COUNT
added at:
2022-05-18 14:37:20
1
-
SQLite 3 CREATE TABLE NOT PRIMARY KEY FOREIGN KEY
added at:
2022-05-18 08:42:57
1
-
SQLite 3 CREATE TABLE NOT PRIMARY KEY FOREIGN KEY
added at:
2022-05-18 08:27:52
1
-
SQLite 3 CREATE TABLE NOT PRIMARY KEY FOREIGN KEY
added at:
2022-05-18 08:26:11
3
-
SQLite 3 CREATE TABLE INSERT INTO SELECT RIGHT JOIN
added at:
2022-05-18 00:49:32
2
-
SQLite 3 CREATE TABLE INSERT INTO SELECT RIGHT JOIN
added at:
2022-05-18 00:46:49
1
-
SQLite 3 CREATE TABLE INSERT INTO SELECT INNER JOIN
added at:
2022-05-18 00:46:40
1