36.0k views
3 votes
You need to extract data from the system your predecessor created. you discover tables have been created according to the third normal form. you find the needed data in three different tables. what SQL syntax allows you to garner this data?

a. union
b. join
c. Select
d. Having

User Chidimo
by
6.4k points

1 Answer

3 votes

Answer:

b. join

Step-by-step explanation:

Correct answer:

Join: It allow join(paste) two tables by one or more commun columns

Example in the image attached

Bad answer:

Union: it only allow paste two tables with the same structure

select: it only allow get information from 1 table if not use join

having: it only allow get filtered information with a condition

You need to extract data from the system your predecessor created. you discover tables-example-1
User Amado
by
7.3k points