1
列を異なる値にするために制約を作成しようとしていますが、timesheet_approved行でエラーが発生し続けます。oracleに右括弧が欠けている(行7)
create table Funtom_timesheet
(
timesheet_ID number(3) constraint timesheet_pk primary key,
timesheet_Emp number(3) constraint timesheet_Emp not null references funtom_employee,
timesheet_Wc date constraint timesheet_Wc not null,
timesheet_OT number(2) default 0,
timesheet_Approved number(3) constraint timesheet_approved_uc unique(timesheet_Approved,timesheet_Emp) constraint timesheet_approved references funtom_employee
)
;
の欄に入力します。それらを分離してみてください)、[docs.oracle.com](http://docs.oracle.com/cd/B19306_01/server.102/b14200/statements_7002.htm) – Spidey