I created my table:
End result:
Any help is appreciated.
I am trying to create a table showing the employee information, but when I used the "insert" command only the information for the second employee appears. Also, the column names are missing and the numbers are incorrect.
Edit Apologies about the images. I made some updates, but I am still having an issue with the column names and my first row not appearing.
Create table biscoe6
("EmployeeID" "varchar"(11),
"SSN" "varchar"(11),
"fName" "varchar"(12),
"lName" "varchar"(12),
"Position" "varchar"(12),
"Salary" number(10, 2),
"PhoneNum" "char"(12));
insert into biscoe6 ("EmployeeID", "SSN", "fName", "lName", "Position", "Salary", "PhoneNum")
values (null, null, null, null, null, null, null);
values (100, '111-11-0607', 'John', 'Smith', 'Manager', 35000.75, '800-350-0000');
values (200, '333-22-0607', 'John', 'Jones', 'Associate', 25000.00, '202-666-0000');
values (300, '444-444-0607', 'Sally', 'Smith', 'Manager', 46500.00, '303-999-0000');
values (400, '111-11-2102', 'Randy', 'Johnson', 'Intern', 36900.00, '205-654-0000');