SQLite
ดูคำสั่งได้ที่: http://www.sqlitetutorial.net/
Start
- Install sqlite โดยเปิด terminal ใน ubuntu แล้วใช้คำสั่ง: sudo apt-get install sqlite3
- เริ่มใช้ sqlite โดยคำสั่ง: sqlite3
- สร้าง database โดยใช้คำสั่ง: .open ตามด้วยชื่อไฟล์
Create Table
- Author
- ID Integer (primary key)
- Name Text
- Phone_number Text
- Location Text
- Book
- B_ID Text (primary key)
- B_Name Text
- Price Integer
- P_ID Integer (foreign key)
- P_Date Text
- Publisher
- ID Integer (primary key)
- Name Text
- Phone_number Text
- Location Text
- Write
- A_id (foreign key)
- B_isbn (foreign key)
- Write
- A_id (foreign key)
- B_isbn (foreign key)
Insert value into database
- Author: Name, Phone_number, Location
- Values: Thomas Harris, 75884849, USA
- Book: B_ID, B_Name, Price, P_ID,P_Date
- Values: 0001, Hannibal, 150, 1, 08-6-1999
- Publisher: Name, Phone_number, Location
- Values: Delacorte Press, 888596657, USA
- Write: A_id, B_isbn
- Values: 1, 1
- Write: A_id, B_isbn
- Values: 1, 1
Check Value in table
Use Select
- เมื่อต้องการดู Author ให้ใช้คำสั่ง SELECT * FROM Author
- เมื่อต้องการดู Book ให้ใช้คำสั่ง SELECT * FROM Book
- เมื่อต้องการดู Publisher ให้ใช้คำสั่ง SELECT * FROM Publisher
- เมื่อต้องการดู Write ให้ใช้คำสั่ง SELECT * FROM Write
- เมื่อต้องการดู Write ให้ใช้คำสั่ง SELECT * FROM Write
Or Use DB Browser for Sqlite: https://sqlitebrowser.org/

- คลิกขวาบน Table ที่ต้องการดู
- เลือก Browse Table
Add 10 or more books
ทำการเพิ่มข้อมูลหนังสือเข้าไปยังแต่ละ Table ที่สร้างไว้ตามที่ทำใน Insert values into database แล้วทำการ SELECT * FROM เพื่อดูผลได้ดังนี้
Author
SELECT * FROM Author;
1|Thomas Harris|07-5884-849|USA
2|J.R.R. Tolkien|08-8559-888|UK
3|Antoine de Saint-Exupery|03-3225-444|French
4|J.K. Rowling|09-8579-977|UK
Author
SELECT * FROM Author;
1|Thomas Harris|07-5884-849|USA
2|J.R.R. Tolkien|08-8559-888|UK
3|Antoine de Saint-Exupery|03-3225-444|French
4|J.K. Rowling|09-8579-977|UK
Book
Select * From Book;
1|Hannibal|150|1|8 June 1999
2|The Lord of the Rings|120|2|29 June 1954
3|Le Petit Prince|100|3|April 1943
4|Harry Potter and the Philosopher's Stone|199|4|26 June 1997
5|The Hobbit|120|2|21 September 1937
6|Harry Potter and the Chamber of Secrets|199|4|2 July 1998
7|Harry Potter and the Prisoner of Azkaban|199|4|8 July 1999
8|Harry Potter and the Goblet of Fire|199|4|8 July 2000
9|Harry Potter and the Order of Phoenix|199|4|21 June 2003
10|Harry Potter and the Half-Blood Prince|199|4|16 July 2015
Publisher
SELECT * FROM Publisher;
1|Delacorte Press|08-8859-6657|USA
2|Goerge Allen & Unwin|(61 2) 8425 0100|Australia
3|Reynold & Hitchcock|08-555-7788|USA
4|Bloomsbury|05-566-664|Canada
Select * From Book;
1|Hannibal|150|1|8 June 1999
2|The Lord of the Rings|120|2|29 June 1954
3|Le Petit Prince|100|3|April 1943
4|Harry Potter and the Philosopher's Stone|199|4|26 June 1997
5|The Hobbit|120|2|21 September 1937
6|Harry Potter and the Chamber of Secrets|199|4|2 July 1998
7|Harry Potter and the Prisoner of Azkaban|199|4|8 July 1999
8|Harry Potter and the Goblet of Fire|199|4|8 July 2000
9|Harry Potter and the Order of Phoenix|199|4|21 June 2003
10|Harry Potter and the Half-Blood Prince|199|4|16 July 2015
Publisher
SELECT * FROM Publisher;
1|Delacorte Press|08-8859-6657|USA
2|Goerge Allen & Unwin|(61 2) 8425 0100|Australia
3|Reynold & Hitchcock|08-555-7788|USA
4|Bloomsbury|05-566-664|Canada
Write
SELECT * FROM Write;
1|1
2|2
3|3
4|4
2|5
4|6
4|7
4|8
4|9
4|10
: https://en.wikipedia.org/wiki/List_of_best-selling_books





ไม่มีความคิดเห็น:
แสดงความคิดเห็น