![Database System Concepts](https://www.bartleby.com/isbn_cover_images/9780078022159/9780078022159_smallCoverImage.jpg)
Database System Concepts
7th Edition
ISBN: 9780078022159
Author: Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher: McGraw-Hill Education
expand_more
expand_more
format_list_bulleted
Concept explainers
Question
Problem 18: Write the set of SQL commands necessary to insert the data into the CUSTOMER table you created in Problem 16, as illustrated in Figure P8.16.
Problem 19: Write the set of SQL commands necessary to insert the data into the INVOICE table you created in Problem 17, as illustrated in Figure P8.16.
Use YYYY-MM-DD format when inserting dates.
![### Problems 8.16-8.25
Ensure referential integrity for the `CUSTOMER` table.
#### Figure P8.16: CH08_SIMPLECO Database Tables
**Table Name: CUSTOMER**
| CUST_NUM | CUST_LNAME | CUST_FNAME | CUST_BALANCE |
|----------|------------|------------|--------------|
| 1000 | Smith | Jeanne | 1050.11 |
| 1001 | Ortega | Juan | 840.92 |
**Table Name: INVOICE**
| INV_NUM | CUST_NUM | INV_DATE | INV_AMOUNT |
|---------|----------|----------|------------|
| 1000 | 23-Mar-16 | 235.98 |
| 1001 | 22-Mar-16 | 512.00 |
| 1002 | 23-Mar-16 | 428.00 |
| 1003 | 23-Mar-16 | 1001.50 |
| 1004 | 23-Apr-16 | 619.44 |
### Task
Complete **Problem 17** above.
### Problem 18
Write the SQL commands to insert data into the `CUSTOMER` table, as shown in Figure P8.16.
#### SQL Commands
```sql
insert into customer values(1000, 'Smith', 'Jeanne', 1050.11);
insert into customer values(1001, 'Ortega', 'Juan', 840.92);
```
### Task
Ensure the command structure matches the database requirements.
### Error Notice
`ERROR 1064 (42000) at line 1: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ",500.22); SELECT * FROM INVOICE' at line 3.`
This error suggests there is a syntax issue with the input SQL commands, specifically near a numerical value and a `SELECT` statement.](https://content.bartleby.com/qna-images/question/2899a24e-9b60-4622-b143-895ba2a28098/8f1e9356-4b60-4b67-8530-0f450a1d0552/02nt0m_thumbnail.png)
Transcribed Image Text:### Problems 8.16-8.25
Ensure referential integrity for the `CUSTOMER` table.
#### Figure P8.16: CH08_SIMPLECO Database Tables
**Table Name: CUSTOMER**
| CUST_NUM | CUST_LNAME | CUST_FNAME | CUST_BALANCE |
|----------|------------|------------|--------------|
| 1000 | Smith | Jeanne | 1050.11 |
| 1001 | Ortega | Juan | 840.92 |
**Table Name: INVOICE**
| INV_NUM | CUST_NUM | INV_DATE | INV_AMOUNT |
|---------|----------|----------|------------|
| 1000 | 23-Mar-16 | 235.98 |
| 1001 | 22-Mar-16 | 512.00 |
| 1002 | 23-Mar-16 | 428.00 |
| 1003 | 23-Mar-16 | 1001.50 |
| 1004 | 23-Apr-16 | 619.44 |
### Task
Complete **Problem 17** above.
### Problem 18
Write the SQL commands to insert data into the `CUSTOMER` table, as shown in Figure P8.16.
#### SQL Commands
```sql
insert into customer values(1000, 'Smith', 'Jeanne', 1050.11);
insert into customer values(1001, 'Ortega', 'Juan', 840.92);
```
### Task
Ensure the command structure matches the database requirements.
### Error Notice
`ERROR 1064 (42000) at line 1: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ",500.22); SELECT * FROM INVOICE' at line 3.`
This error suggests there is a syntax issue with the input SQL commands, specifically near a numerical value and a `SELECT` statement.
![### Educational Content on Database Tables and SQL Queries
#### Problems 8.16-8.25 Overview
**Tables and Figures:**
- **Database Name: Ch08_SimpleCo**
- **Tables Included:**
- **CUSTOMER Table:**
- **Fields:** CUST_NUM, CUST_LNAME, CUST_FNAME, CUST_BALANCE
- **Data Sample:**
- (1000, Smith, Jeanne, 1050.11)
- (1001, Ortega, Juan, 840.92)
- **INVOICE Table:**
- **Fields:** INV_NUM, CUST_NUM, INV_DATE, INV_AMOUNT
- **Data Sample:**
- (8000, 1000, 23-Mar-16, 235.89)
- (8001, 1000, 23-Mar-16, 312.82)
- (8002, 1001, 30-Mar-16, 528.10)
- (8003, 1000, 12-Apr-16, 194.78)
- (8004, 1000, 23-Apr-16, 619.44)
**Figure P8.16: CH08_SIMPLECO DATABASE TABLES** visualizes the data structure for easy reference.
#### Problem 19 Instructions
- **Task:** Write the SQL commands required to insert new data into the `INVOICE` table as per the design in Problem 17.
- **Date Format:** Use the `YYYY-MM-DD` format when entering dates.
#### Example SQL Query
The SQL command provided for inserting data into the `INVOICE` table is as follows:
```sql
INSERT INTO INVOICE(INV_NUM, CUST_NUM, INV_DATE, INV_AMOUNT)
VALUES(8005, 1000, '2016-10-20', 500.22);
```
To view the data in the `INVOICE` table, you can use:
```sql
SELECT * FROM INVOICE;
```
#### SQL Viewer
- A tool or interface to run SQL queries and visualize results.
**Note:** Ensure that you adjust the problem numbers and content as per the context needed for educational dissemination.](https://content.bartleby.com/qna-images/question/2899a24e-9b60-4622-b143-895ba2a28098/8f1e9356-4b60-4b67-8530-0f450a1d0552/u4a2ep8_thumbnail.png)
Transcribed Image Text:### Educational Content on Database Tables and SQL Queries
#### Problems 8.16-8.25 Overview
**Tables and Figures:**
- **Database Name: Ch08_SimpleCo**
- **Tables Included:**
- **CUSTOMER Table:**
- **Fields:** CUST_NUM, CUST_LNAME, CUST_FNAME, CUST_BALANCE
- **Data Sample:**
- (1000, Smith, Jeanne, 1050.11)
- (1001, Ortega, Juan, 840.92)
- **INVOICE Table:**
- **Fields:** INV_NUM, CUST_NUM, INV_DATE, INV_AMOUNT
- **Data Sample:**
- (8000, 1000, 23-Mar-16, 235.89)
- (8001, 1000, 23-Mar-16, 312.82)
- (8002, 1001, 30-Mar-16, 528.10)
- (8003, 1000, 12-Apr-16, 194.78)
- (8004, 1000, 23-Apr-16, 619.44)
**Figure P8.16: CH08_SIMPLECO DATABASE TABLES** visualizes the data structure for easy reference.
#### Problem 19 Instructions
- **Task:** Write the SQL commands required to insert new data into the `INVOICE` table as per the design in Problem 17.
- **Date Format:** Use the `YYYY-MM-DD` format when entering dates.
#### Example SQL Query
The SQL command provided for inserting data into the `INVOICE` table is as follows:
```sql
INSERT INTO INVOICE(INV_NUM, CUST_NUM, INV_DATE, INV_AMOUNT)
VALUES(8005, 1000, '2016-10-20', 500.22);
```
To view the data in the `INVOICE` table, you can use:
```sql
SELECT * FROM INVOICE;
```
#### SQL Viewer
- A tool or interface to run SQL queries and visualize results.
**Note:** Ensure that you adjust the problem numbers and content as per the context needed for educational dissemination.
Expert Solution
![Check Mark](/static/check-mark.png)
This question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
This is a popular solution
Trending nowThis is a popular solution!
Step by stepSolved in 2 steps
![Blurred answer](/static/blurred-answer.jpg)
Knowledge Booster
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
- Write a PL/SQL Programming block to do below actions 2.Before you work on Quesiton 2 , please create a table because you will be inserting numbers in thisMessages tableCREATE TABLE messages( RESULTS NUMBER)Run below query to see if there is any data :SELECT * FROM MESSAGESarrow_forwardWrite queries in SQL to answer each of the following questions: 1. Find all students in Comp. Sci. dept 2. Find all students with total credits > 100 3. Find all students who took course in Spring 2010 (Remove duplicates please) 4. Find all courses taken by the student whose ID is 76543 and also find his name create table student (ID varchar(5), name varchar(20) not null, dept_name varchar(20), tot_cred numeric(3,0), primary key (ID) ); create table takes (ID varchar(5), course_id varchar(8), sec_id varchar(8), semester varchar(6), year numeric(4,0), grade varchar(2), primary key (ID, course_id, sec_id, semester, year) ); insert into student values ('00128', 'Zhang', 'Comp. Sci.', '102'); insert into student values ('12345', 'Shankar', 'Comp. Sci.', '32'); insert into student values ('19991', 'Brandt', 'History', '80'); insert into student values ('23121', 'Chavez', 'Finance', '110'); insert into student values ('44553', 'Peltier', 'Physics', '56'); insert into student values…arrow_forwardPractice Question 1. Assume that the Users table has a plenty of records but only three colums: UserID, FirstName and LastName. Write the following: a) Write an SQL query to show the top 5 records of the Users table. (in order to test it populate your table with more than 5 records) in the PHP file and to display the result in well-readable format (table preffered) in the browser using parameters. b) Write a SQL query in the PHP file that will print details of all users excluding those with the FirstName “Will” and “Michael” from the Users table and to display the result in well-readable format (table preffered) in the browser using parameters. Hint: you can either write all your code in the same file or use two different filesarrow_forward
- a. Write the SQL commands to create each table after normalization.b. Write insert command to add 5 rows in each of the table.c. Write a delete command to delete row from each table.d. Write the commands to query following values.1. Show Product id and finish date for all Products2. Show Product id and finish for all Products, sort by Product_Line_ID byascending order3. Show Product id and finish for all Products, sort by Product_Line_ID bydescending order4. Show each Product_Line_ID and the total number of Products for theProduct_Line_IDarrow_forwardFor SQL, Modify the following select statement. Convert the datatypes of all the columns to text. (Actually, sometimes this code will work as it is and the conversion of the datatypes is done automatically for you behind the scenes.)select date_1, date_1, date_1from sec1507_firstunionselect number_2, word_2, date_2from sec1507_second;arrow_forwardTAL Distributors would like to know the number of months between the current date and the order date of an order. Write an SQL statement in MySQL that displays the order number and the number of months between the current date and the order date. The number of months should display as an integer. (Hint: You can nest one function within another function.) Snip and paste the SQL command(s) and results below.arrow_forward
arrow_back_ios
arrow_forward_ios
Recommended textbooks for you
- Database System ConceptsComputer ScienceISBN:9780078022159Author:Abraham Silberschatz Professor, Henry F. Korth, S. SudarshanPublisher:McGraw-Hill EducationStarting Out with Python (4th Edition)Computer ScienceISBN:9780134444321Author:Tony GaddisPublisher:PEARSONDigital Fundamentals (11th Edition)Computer ScienceISBN:9780132737968Author:Thomas L. FloydPublisher:PEARSON
- C How to Program (8th Edition)Computer ScienceISBN:9780133976892Author:Paul J. Deitel, Harvey DeitelPublisher:PEARSONDatabase Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781337627900Author:Carlos Coronel, Steven MorrisPublisher:Cengage LearningProgrammable Logic ControllersComputer ScienceISBN:9780073373843Author:Frank D. PetruzellaPublisher:McGraw-Hill Education
![Text book image](https://www.bartleby.com/isbn_cover_images/9780078022159/9780078022159_smallCoverImage.jpg)
Database System Concepts
Computer Science
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:McGraw-Hill Education
![Text book image](https://www.bartleby.com/isbn_cover_images/9780134444321/9780134444321_smallCoverImage.gif)
Starting Out with Python (4th Edition)
Computer Science
ISBN:9780134444321
Author:Tony Gaddis
Publisher:PEARSON
![Text book image](https://www.bartleby.com/isbn_cover_images/9780132737968/9780132737968_smallCoverImage.gif)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:9780132737968
Author:Thomas L. Floyd
Publisher:PEARSON
![Text book image](https://www.bartleby.com/isbn_cover_images/9780133976892/9780133976892_smallCoverImage.gif)
C How to Program (8th Edition)
Computer Science
ISBN:9780133976892
Author:Paul J. Deitel, Harvey Deitel
Publisher:PEARSON
![Text book image](https://www.bartleby.com/isbn_cover_images/9781337627900/9781337627900_smallCoverImage.gif)
Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781337627900
Author:Carlos Coronel, Steven Morris
Publisher:Cengage Learning
![Text book image](https://www.bartleby.com/isbn_cover_images/9780073373843/9780073373843_smallCoverImage.gif)
Programmable Logic Controllers
Computer Science
ISBN:9780073373843
Author:Frank D. Petruzella
Publisher:McGraw-Hill Education