Assign6 Ans
Assign6 Ans
TABLE section2 AS
*
section
1=2
Create a view that will display the names of courses taught by Anita Morris
Display that data from the view.
You should be able to run the script from the SQL*Plus command line with the @ symbol or the "run"
command.
CREATE
SELECT
FROM
WHERE
SELECT *
FROM v_morris
3) Write a table creation script for a table called OWNER. Include the following:
Column for the owner id; primary key
Column for the owner username (i.e., the logon name); unique and not null
Column for the owners first name; can be null
Column for the owners last name; can be null
Determine the appropriate data types.