Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there set division in SQL?

I'm fully aware that set division can be accomplished through a series of other operations, so my question is:

Is there a command for set division in SQL?

like image 375
Esteban Araya Avatar asked Dec 30 '22 10:12

Esteban Araya


1 Answers

http://vadimtropashko.files.wordpress.com/2007/02/ch3.pdf

From Page 32:

Relational Division is not a fundamental operator. It can be expressed in terms of projection, Cartesian product, and set difference.

So, no. :)

like image 171
Brad Wilson Avatar answered Jan 01 '23 22:01

Brad Wilson