SQL Plus

Hindi

System.out.println(" ");
Dec 30, 2012
989
192
Right, so um there's a lil error in my query

theres a table named Student EDU
Code:
create table STU_EDU(
S_ID number primary key,
S_NAME varchar2(10),
S_DEGREE varchar2(5),
YR_OF_PASSING number(5),
PERCENT number(3),
);

And, If I wanted to delete the students record with ID 102, What Query I'd be firing?

I've tried, ALTER table STU_EDU drop WHERE S_ID=102;

halp
 

Users who are viewing this thread

Top