edited by
393 views
0 votes
0 votes

UNION, Intersect Operation in both, Relational Algebra and SQL automatically eliminates DUPLICATES. Does UNION, INTERSECT operation also by default SORTs the resultant tuples in SQL (OR) the resultant SET in Relational Algebra? If Yes, Does it also automatically sorts the result of UNION ALL &  INTERSECT ALL?

edited by

Please log in or register to answer this question.

Related questions

0 votes
0 votes
1 answer
1
phaniphani asked Nov 16, 2023
192 views
is it allowed in a B+ tree, while deletion to leave behind a key in internal nodes while deleting it from the leaf ?
0 votes
0 votes
0 answers
3
sid2601678 asked Oct 4, 2018
1,464 views
Consider the sql querySelect p.a1 From p,r1,r2 Where p.a1 = r1.a1 or p.a1 = r2.a1Under what conditions does the preceding query select values of p.a1 that are either in r...