
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
Question
I answered questions 1-8.
I need help with questions 8-12!

Transcribed Image Text:**Oracle Assignment on Creating and Maintaining a Table (and also a few queries)**
**For all problems, I want you to show me the Oracle command you wrote and the results produced.**
1. Create an Oracle table with a minimum of two varchar(2) fields (one should be a person's name), a char field, a numeric field with decimal places, a numeric field for a whole number, and a date field.
2. Show me a description of the table.
3. Populate the table with data; you should put in a variety of data so it can be effectively queried. Show me one of the insert statements you used.
The name varchar(2) fields should contain a name in the format last name slash first name middle name or initial, if any. For example:
- Doe/John M
- Jones/Mary
- Adams-Costa/Susan Ann
- Langley/M Richard
4. Change two fields on a record and show me the before and after.
5. Make a change that affects more than one record (but not all).
6. Delete a record and show me the before and after.
7. Alter the structure of the table by adding a column/field and populating it. Show me the results.
8. Alter the structure of the table by adding a character to a varchar2 field. Show me the results.
9. Do a search and find out how to alter the structure of the table by deleting a column. Demonstrate and show me the results. Site the address where you found the explanation.
10. Do a search and find out how to alter the structure of the table by renaming a column. Demonstrate and show me the results. Site the address where you found the explanation.
11. Do a query that does a sort on two fields. Tell me which field is the primary sort and which is the secondary sort. Show me the results.
12. Do a query that uses between and show me the results.
13. Do a query that uses a condition for the underscored characters that are missing.
14. Do a query that looks for one thing that has to be true with either of two other things.
15. Do a query that does a calculation for the results where you add two things together and divide by something.
16. Do a query where you test for null or something else.
17. Do a query that uses NOT and explain what you tried to accomplish
Expert Solution

arrow_forward
Step 1
ANSWER :
8)
create table toys (
toy_name varchar2(10),
weight number,
colour varchar2(10)
);
Oracle Database has many data types to choose from. Common data types are:
Number - stores numeric data: prices, weights, distances, etc.
Date - holds date and time information
Varchar2 - use for general purpose text; names, descriptions, etc.
Step by stepSolved in 4 steps with 4 images

Knowledge Booster
Similar questions
- Write instructions that jump to label L1 when the unsigned integer in DX is less than orequal to the integer in CX.arrow_forwardWhat is the definition of privacy? The following are five ways to keep your personal information protected.arrow_forwardPrivacy is a broad term, but what do you mean by that? Does it truly make a difference?? And what exactly does it mean to be anonymous while browsing the web?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

Database System Concepts
Computer Science
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:McGraw-Hill Education

Starting Out with Python (4th Edition)
Computer Science
ISBN:9780134444321
Author:Tony Gaddis
Publisher:PEARSON

Digital Fundamentals (11th Edition)
Computer Science
ISBN:9780132737968
Author:Thomas L. Floyd
Publisher:PEARSON

C How to Program (8th Edition)
Computer Science
ISBN:9780133976892
Author:Paul J. Deitel, Harvey Deitel
Publisher:PEARSON

Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781337627900
Author:Carlos Coronel, Steven Morris
Publisher:Cengage Learning

Programmable Logic Controllers
Computer Science
ISBN:9780073373843
Author:Frank D. Petruzella
Publisher:McGraw-Hill Education