vote up 4 vote down star
1

I want to do something like:

DELETE FROM student WHERE
student.course, student.major IN
(SELECT schedule.course, schedule.major FROM schedule)

However, it seems that you can only use one column with the IN operator. Is that true? Seems like a query like this should be possible.

flag

5 Answers

vote up 12 vote down check

No, you just need parentheses:

DELETE FROM student WHERE
(student.course, student.major) IN
(SELECT schedule.course, schedule.major FROM schedule)
link|flag
vote up 0 vote down

You could also use the EXISTS clause:

DELETE FROM student WHERE EXISTS ( SELECT 1 FROM schedule WHERE schedule.course=student.course AND schedule.major=student.major )

link|flag
vote up 0 vote down

In Oracle, you can do a delete from an in-line view, but it generally needs a foreign key that ensures that a row from the table from which the row is deleted cannot be represented by more than one row in the view.

create table parent (id number primary key);
create table child (id number primary key, parent_id number references parent);
insert into parent values(1);
insert into child values(2,1);
delete from (select * from parent p, child c where c.parent_id = p.id);
link|flag
vote up 1 vote down

The syntax below works in SQLServer but I believe it is a standard sql but as pointed out in comments this is non standard implementation and is not currently supported in Oracle.

I will leave it for reference

delete s
from 
    student s 
    inner join schedule sch
    on s.course=sch.course 
    and s.major = sch.major
link|flag
No, standard SQL supports only one table in DELETE. MySQL and Microsoft SQL Server support multi-table DELETE as an extension to the standard, but Oracle does not. – Bill Karwin Feb 2 at 18:04
The SQL standard concept of a table isn't strictly limited to a table. It often includes views. Certain views are updatable, and by extension, deletable. – Gary Feb 2 at 22:16
Thanks for the comments, it is good to learn about differences in DB implementations. I have updated my answer to include your points – kristof Feb 3 at 10:45
vote up 5 vote down

DELETE FROM student WHERE (student.course, student.major) IN (SELECT schedule.course, schedule.major FROM schedule)

Put parens around your terms in the where clause. Cheers!

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.