Answer to Question #76383 in Databases | SQL | Oracle | MS Access for J
Select the statement that is equivalent to the one below. Equivalent means that it would return the same records.
SELECT *
FROM ARRIVAL
WHERE ORIGIN = 'DUS'
OR ORIGIN = 'JFK'
OR ORIGIN = 'DFW'
SELECT *
FROM ARRIVAL
WHERE ORIGIN IN ('DUS', 'JFK', 'DFW')
SELECT *
FROM ARRIVAL
WHERE ORIGIN OR ('DUS', 'JFK', 'DFW')
SELECT *
FROM ARRIVAL
WHERE ORIGIN = ('DUS', 'JFK', 'DFW')
SELECT *
FROM ARRIVAL
WHERE ORIGIN AND ('DUS', 'JFK', 'DFW')
1
2018-04-27T12:05:08-0400
SELECT *
FROM ARRIVAL
WHERE ORIGIN IN ('DUS', 'JFK', 'DFW')
Need a fast expert's response?
Submit order
and get a quick answer at the best price
for any assignment or question with DETAILED EXPLANATIONS!
Comments
Leave a comment