Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Instructions: For each problem Write and execute an SQL query in Oracle Live SQL or SQL * Plus Execute the following command: select sysdate, 'your
Instructions: For each problem
Write and execute an SQL query in Oracle Live SQL or SQLPlus
Execute the following command: select sysdate, 'your name' from dual; where yourname is substituted with your name
Take a screenshot that includes both SQL statements and all results
Copy and paste the screenshot into a Word file containing your solutions
Practice Problems: Table Creation and Management
Create a new table containing at least four columns of four different data types CHAR VARCHAR NUMBER, DATE Name the table yourfirstnameyourlastname substitute yourfirstname with your first name and yourlastname with your last name
Retrieve a list of tables in your schema to confirm that the table created in Problem is stored in your schema.
Obtain information about the table created in Problem Display the structure of the table that includes column names, data types, and constraints.
Add a column to the table created in Problem
Change the size of any column in the table created in Problem
Add a new constraint UNIQUE CHECK, etc. to any column in the table created in Problem
Drop a column in the table created in Problem
Mark one of the columns in the table created in Problem as unused. Verify that the column is no longer available.
Rename the table created in Problem
Delete the table created in Problem permanently so that it isnt moved to the recycle bin.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started