Question

In Oracle, the statement used to retrieve all the jobs with jobid greater than 5 and less than 8, displaying only jobids and associated dates, would be which of the following?
a) Select jobid, date From Job Where jobid between 5 and 8
b) Select jobid, date From Job Where jobid >5 And <8
c) Select jobid, date From Job Where jobid >=5 and <=8
d) Select jobid, date From Job Where jobid 5 and 8

Answer

This answer is hidden. It contains 1 characters.