sqliteHow do I install and use SQLite on Ubuntu?
- Install SQLite on Ubuntu by running the command
sudo apt-get install sqlite3
in a terminal window. - Create a new database by running the command
sqlite3 <database_name>
in the same terminal window. - Create a table in the database by running the command
CREATE TABLE <table_name> (<column_name> <data_type>)
. - Add records to the table using the command
INSERT INTO <table_name> VALUES (<value1>, <value2>, ...)
. - Retrieve records from the table using the command
SELECT * FROM <table_name>
. - Update existing records using the command
UPDATE <table_name> SET <column_name> = <new_value> WHERE <column_name> = <value>
. - Delete records from the table using the command
DELETE FROM <table_name> WHERE <column_name> = <value>
.
Example code block:
sqlite> CREATE TABLE users (name TEXT, age INTEGER);
sqlite> INSERT INTO users VALUES ('John', 25);
sqlite> SELECT * FROM users;
name age
---------- ----------
John 25
Helpful links
More of Sqlite
- How can I use SQLite to query for records between two specific dates?
- How do I use regular expressions to query a SQLite database?
- How can I get the year from a date in SQLite?
- How can I use the XOR operator in a SQLite query?
- How can I use SQLite with Xamarin Forms and C#?
- How can I use SQLite with Kubernetes?
- How do I install SQLite using Python?
- How do I set up a SQLite server?
- How can I use PHP to query a SQLite database?
- How do I use UUIDs in SQLite?
See more codes...