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:
2023-09-24 20:13:54
443
- SQLite 3 CREATE TABLE PRIMARY KEY AUTO_INCREMENT INSERT INTO SELECT WHERE IN GROUP BY HAVING
last run:
2023-09-05 19:55:38
63
- SQLite 3 d41d8cd98f00b204e9800998ecf8427e
last run:
2023-09-03 20:20:44
37
- SQLite 3 CREATE TABLE INSERT INTO SELECT COUNT SUM GROUP BY
last run:
2023-04-29 13:15:23
22
- SQLite 3 CREATE TABLE PRIMARY KEY INSERT INTO SELECT
last run:
2023-05-24 09:19:40
17
- SQLite 3 CREATE TABLE PRIMARY KEY DEFAULT INSERT INTO SELECT
last run:
2023-04-12 12:52:33
17
- SQLite 3 4625b31005a03ac3c6f854c5df55e002
last run:
2023-09-13 10:50:44
17
- SQLite 3 CREATE TABLE COUNT PRIMARY KEY UPDATE INSERT INTO SELECT
last run:
2022-01-17 05:12:47
16
- SQLite 3 DROP VIEW CREATE VIEW SELECT LEFT JOIN
last run:
2022-12-22 15:14:57
15
- SQLite 3 CREATE TABLE NOT PRIMARY KEY INSERT INTO MONTH WITH SELECT JOIN SUBSTRING UPDATE CASE AND IN WHERE COUNT
last run:
2023-08-12 21:01:43
11
SQLite 3 - New snippets
-
SQLite 3 CREATE TABLE PRIMARY KEY INSERT INTO SELECT WHERE
added at:
2023-09-26 10:16:44
1
-
SQLite 3 e39763cb6c6e1d2c56ea1fb06a4c7d91
added at:
2023-09-25 18:30:52
1
-
SQLite 3 8c87f1a556dde093561c8736322a495e
added at:
2023-09-25 18:30:39
1
-
SQLite 3 SELECT CONCAT
added at:
2023-09-25 13:48:11
1
-
SQLite 3 feb5e1d8e60afaa36baece6bf278ed9e
added at:
2023-09-25 04:14:23
2
-
SQLite 3 CREATE TABLE INSERT INTO TRUNCATE SELECT
added at:
2023-09-24 17:47:51
1
-
SQLite 3 CREATE TABLE NOT PRIMARY KEY SELECT JOIN INNER JOIN AND WHERE LEFT OR
added at:
2023-09-24 16:16:11
2
-
SQLite 3 CREATE TABLE NOT PRIMARY KEY JOIN SELECT INNER JOIN AND WHERE LEFT OR
added at:
2023-09-24 16:15:57
1
-
SQLite 3 CREATE TABLE NOT PRIMARY KEY SELECT INNER JOIN AND WHERE LEFT JOIN OR
added at:
2023-09-24 16:13:43
1
-
SQLite 3 CREATE TABLE NOT PRIMARY KEY SELECT JOIN INNER JOIN AND WHERE LEFT OR
added at:
2023-09-24 16:10:05
1