3 (Contacts Data set) Study the books.sql script gave in the ch17 models organizer's sql subfolder. Save the content as addressbook.sql and it to make a solitary table named contacts. The table ought to contain an auto-increased id segment and message sections for an individual memorable name, last name and telephone number. make a Python script illustrating: 1. embed contacts into the information base, 2. question information base to list all the endlessly contacts with explicit last name, 3. update a contact and 4. erase a contact. books.sql code: import panda as pd mport sqlite3 connection sqlite3.connect('books.db') pd.options.display.max_columns = 10 pd.read_sql("SELECT * FROM authors", connection) df = pd. read_sql( "SELECT * FROM authors", connection) DROP TABLE IF EXISTS author_ISBN; DROP TABLE IF EXISTS titles; DROP TABLE IF EXISTS authors; CREATE TABLE authors ( id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT, first TEXT NOT NULL, last TEXT NOT NULL CREATE TABLE titles ( isbn TEXT NOT NULL, title TEXT NOT NULL, edition INTEGER NOT NULL, copyright TEXT NOT NULL, PRIMARY KEY (1sbn) 0; CREATE TABLE author_ISBN ( id INTEGER NOT NULL, isbn TEXT NOT NULL, PRIMARY KEY (td, isbn),

Systems Architecture
7th Edition
ISBN:9781305080195
Author:Stephen D. Burd
Publisher:Stephen D. Burd
Chapter3: Data Representation
Section: Chapter Questions
Problem 3RP
icon
Related questions
Question

 

 

(Contacts Data set) Study the books.sql script gave in the ch17 models organizer's sql subfolder. Save the content as addressbook.sql and
it to make a solitary table named contacts. The table ought to contain an auto-increased id segment and message sections for an individual':
memorable name, last name and telephone number. make a Python script illustrating: 1. embed contacts into the information base, 2. question.
information base to list all the endlessly contacts with explicit last name, 3. update a contact and 4. erase a contact.
books.sql code:
import panda as pd
import sqlite3
connection = sqlite3.connect('books.db')
pd.options.display.max_columns = 10
pd.read_sql("SELECT * FROM
authors", connection)
df = pd. read_sql( "SELECT * FROM authors", connection)
DROP TABLE IF EXISTS author_ISBN;
DROP TABLE IF EXISTS titles;
DROP TABLE IF EXISTS authors;
CREATE TABLE authors (
id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
first TEXT NOT NULL,
last TEXT NOT NULL
CREATE TABLE titles (
);
isbn TEXT NOT NULL,
title TEXT NOT NULL,
edition INTEGER NOT NULL,
copyright TEXT NOT NULL,
PRIMARY KEY (Lsbn)
CREATE TABLE author_ISBN (
id INTEGER NOT NULL,
isbn TEXT NOT NULL,
PRIMARY KEY (id, isbn),
Transcribed Image Text:(Contacts Data set) Study the books.sql script gave in the ch17 models organizer's sql subfolder. Save the content as addressbook.sql and it to make a solitary table named contacts. The table ought to contain an auto-increased id segment and message sections for an individual': memorable name, last name and telephone number. make a Python script illustrating: 1. embed contacts into the information base, 2. question. information base to list all the endlessly contacts with explicit last name, 3. update a contact and 4. erase a contact. books.sql code: import panda as pd import sqlite3 connection = sqlite3.connect('books.db') pd.options.display.max_columns = 10 pd.read_sql("SELECT * FROM authors", connection) df = pd. read_sql( "SELECT * FROM authors", connection) DROP TABLE IF EXISTS author_ISBN; DROP TABLE IF EXISTS titles; DROP TABLE IF EXISTS authors; CREATE TABLE authors ( id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT, first TEXT NOT NULL, last TEXT NOT NULL CREATE TABLE titles ( ); isbn TEXT NOT NULL, title TEXT NOT NULL, edition INTEGER NOT NULL, copyright TEXT NOT NULL, PRIMARY KEY (Lsbn) CREATE TABLE author_ISBN ( id INTEGER NOT NULL, isbn TEXT NOT NULL, PRIMARY KEY (id, isbn),
INSERT INTO authors (first, last)
VALUES
('Paul', 'Deitel'),
('Harvey', 'Dettel'),
('Abbey', 'Deitel'),
('Dan', 'Quirk'),
('Alexander', 'Wald');
INSERT INTO titles (isbn, title, edition, copyright)
VALUES
('0135404673', 'Intro to Python for CS and DS', 1, '2020'),
('0132151006', 'Internet & WWW How to Program', 5, '2012'),
('0134743350', 'Java How to Program', 11, '2018'),
('0133976890', 'C How to Program', 8, '2016'),
('0133406954', 'Visual Basic 2012 How to Program', 6, '2014'),
('0134601548 'Visual C# How to Program',6, '2017'),
('0136151574' 'Visual C++ How to Program', 2, '2008'),
('0134448235', 'C++ How to Program', 10, '2017'),
('0134444302', 'Android How to Program', 3, '2017'),
('0134289366', 'Android 6 for Programmers', 3, '2016');
INSERT INTO author_ISBN (id, isbn)
VALUES
(1, ¹0134289366'),
(2, '0134289366'),
(5, ¹0134289366'),
(1, 0135404673
(2, '0135404673
(1,'0132151006
(2, '0132151006
(3,'0132151006
(1,'0134743350'),
(2, '0134743350
(1, ¹0133976890
(2, '0133976890'),
(1,'0133406954'),
(2.0133406954').
Transcribed Image Text:INSERT INTO authors (first, last) VALUES ('Paul', 'Deitel'), ('Harvey', 'Dettel'), ('Abbey', 'Deitel'), ('Dan', 'Quirk'), ('Alexander', 'Wald'); INSERT INTO titles (isbn, title, edition, copyright) VALUES ('0135404673', 'Intro to Python for CS and DS', 1, '2020'), ('0132151006', 'Internet & WWW How to Program', 5, '2012'), ('0134743350', 'Java How to Program', 11, '2018'), ('0133976890', 'C How to Program', 8, '2016'), ('0133406954', 'Visual Basic 2012 How to Program', 6, '2014'), ('0134601548 'Visual C# How to Program',6, '2017'), ('0136151574' 'Visual C++ How to Program', 2, '2008'), ('0134448235', 'C++ How to Program', 10, '2017'), ('0134444302', 'Android How to Program', 3, '2017'), ('0134289366', 'Android 6 for Programmers', 3, '2016'); INSERT INTO author_ISBN (id, isbn) VALUES (1, ¹0134289366'), (2, '0134289366'), (5, ¹0134289366'), (1, 0135404673 (2, '0135404673 (1,'0132151006 (2, '0132151006 (3,'0132151006 (1,'0134743350'), (2, '0134743350 (1, ¹0133976890 (2, '0133976890'), (1,'0133406954'), (2.0133406954').
Expert Solution
steps

Step by step

Solved in 5 steps with 4 images

Blurred answer
Knowledge Booster
Form
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Systems Architecture
Systems Architecture
Computer Science
ISBN:
9781305080195
Author:
Stephen D. Burd
Publisher:
Cengage Learning
Np Ms Office 365/Excel 2016 I Ntermed
Np Ms Office 365/Excel 2016 I Ntermed
Computer Science
ISBN:
9781337508841
Author:
Carey
Publisher:
Cengage