5,048 views
5 votes
5 votes

The join operation can be defined as

  1. a cartesian product of two relations followed by a selection
  2. a cartesian product of two relations
  3. a union of two relations followed by cartesian product of the two relations
  4. a union of two relations

3 Answers

8 votes
8 votes

Answer : A

Join is a combination of a Cartesian product followed by a selection process. A Join operation pairs two tuples from different relations, if and only if a given join condition is satisfied.

3 votes
3 votes

ans is (a)

SQL join clause combines columns from one or more tables in a relational database. It creates a set that can be saved as a table or used as it is. A JOIN is a means for combining columns from one (self-table) or more tables by using values common to each. ANSI-standard SQL specifies five types of JOININNERLEFT OUTER,RIGHT OUTERFULL OUTER and CROSS. As a special case, a table (base table, view, or joined table) can JOIN to itself in a self-join.

https://en.wikipedia.org/wiki/Join_(SQL)

Answer:

Related questions

8 votes
8 votes
5 answers
1
makhdoom ghaya asked May 2, 2016
7,385 views
Embedded pointer providesA secondary access pathA physical record keyAn inverted indexA primary key
2 votes
2 votes
2 answers
2
go_editor asked Jun 13, 2016
4,344 views
In C, what is the effect of a negative number in a field width specifier?the values are displayed right justifiedthe values are displayed centeredthe values are displayed...
7 votes
7 votes
4 answers
3
go_editor asked Jun 13, 2016
3,274 views
Repeated execution of simple computation may cause compounding ofround-off errorssyntax errorsrun-time errorslogic errors
8 votes
8 votes
1 answer
4
go_editor asked Jun 13, 2016
4,003 views
Consider the graph shown in the figure below:Which of the following is a valid strong component?$a, c, d$$a, b, d$$b, c, d$$a, b, c$