Computer Science, asked by crronaldo4018, 1 year ago

Write a query to display the current date. label the column date.

Answers

Answered by nitindhyani1234
8
SELECT SYSDATE AS "Date" FROM DUAL;

Answered by kesavbm38
1

Answer:

SELECT CURDATE() "DATE";

Explanation:

It will gives the current date...

Similar questions