sqliteHow do I create a book database using SQLite?
Creating a book database using SQLite is simple. First, you need to create a table to store your book data. The example below creates a table called books
with four fields: title
, author
, year
and price
:
CREATE TABLE books (
title TEXT,
author TEXT,
year INTEGER,
price REAL
);
Then, you can insert books into the table using the INSERT
statement. The following example inserts a book with title 'The Catcher in the Rye', author 'J.D. Salinger', published in 1951 and a price of 10.99:
INSERT INTO books (title, author, year, price)
VALUES ('The Catcher in the Rye', 'J.D. Salinger', 1951, 10.99);
You can also query the table to get information about the books. For example, the following query retrieves all books written by J.D. Salinger:
SELECT title, year, price
FROM books
WHERE author = 'J.D. Salinger';
The output of this query would be:
title year price
The Catcher in the Rye 1951 10.99
Finally, you can also delete books from the table using the DELETE
statement. For example, the following statement deletes the book 'The Catcher in the Rye' from the table:
DELETE FROM books
WHERE title = 'The Catcher in the Rye';
For more information about SQLite, please refer to the SQLite documentation.
More of Sqlite
- How do I generate a row number for each record in a SQLite database?
- How do I use SQLite with Zephyr?
- How can SQLite and ZFS be used together for software development?
- How can I use Python to update a SQLite database?
- How can I use an upsert statement to update data in a SQLite database?
- How do I show the databases in SQLite?
- How do I use the SQLite SELECT statement?
- How do I extract the year from a datetime value in SQLite?
- How can I use SQLite to query for records between two specific dates?
- How can I use SQLite with Xamarin?
See more codes...