I have any problem with homework, could you help me? :)
- Create table CONTEST that will store data about chess contest for the employees in the company. Columns of the table:
Empno digits, up to 6 digits (employee numer) firstname text, up to 20 characters surname text, up to 30 characters startdate date (the date of a game during contest) department digits, up to 3 digits score digits, the highest possible score is 500.
I have tried following codes: score number(3) <= 500 score number(3) between 0 and 500
create table contest1
(empno number(6),
firstname varchar2(20),
surname varchar2(30),
startdate date,
department number(3),
score number(3) between 0 and 500)