asked 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

asked
User Chidimo
by
8.0k 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
answered
User Amado
by
8.6k points
Welcome to Qamnty — a place to ask, share, and grow together. Join our community and get real answers from real people.