0
HOW TO SOLVE THIS SQL ERROR
create table result(usn varchar(10),sem int,cgpa number (2,4),result varchar(5),foreign key(usn) references staff(usn) on delete cascade); HERE NUMBER SHOWS ERROR WHY
1 Answer
+ 1
Because I think number is not a valid data type in SQL. You can use numeric.