Create a view named HighBalance using the the patient number, last name, first name, street, city and zip code for those patients with a balance greater than $1,000. Display the data in the view
Im having trouble creating this SQL command sequence, every time i try to correct it, it gives me an error message saying: Syntax error in CREATE TABLE sequence
CREATE Table HighBalance AS
SELECT PatientNum, LastName, FirstNAme, Street, City, ZipCode
FROM Patient
WHERE Balance>1000 ;
What did i do wrong?
CREATE Table-->CREATE view.