Provided answer is wrong. C is correct.
-- Creating the table
CREATE TABLE STORES (
ID NUMBER,
NAME VARCHAR2(50),
START_DATE DATE
);
-- Inserting data into the table
INSERT INTO STORES VALUES (1, 'Store 1', SYSDATE);
INSERT INTO STORES VALUES (2, 'Store 2', ADD_MONTHS(SYSDATE, -10));
INSERT INTO STORES VALUES (3, 'Store 3', ADD_MONTHS(SYSDATE, -20));
INSERT INTO STORES VALUES (4, 'Store 4', ADD_MONTHS(SYSDATE, -30));
-- Commit to save data
COMMIT;
-- Selecting rows where START_DATE is within the last 25 months
SELECT * FROM STORES
WHERE MONTHS_BETWEEN(SYSDATE, START_DATE) <= 25;
The same question as question 10 in 1z0-071. The answer is C.
upvoted 1 times
...
This section is not available anymore. Please use the main Exam Page.1z0-082 Exam Questions
Log in to ExamTopics
Sign in:
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.
Upvoting a comment with a selected answer will also increase the vote count towards that answer by one.
So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.
Jinas
10 months, 1 week agoauwia
11 months, 3 weeks agofdelasie
1 year agoDragon67
1 year, 1 month agoivanadj
1 year, 4 months agoivanadj
1 year, 4 months ago