Get current date In sql server ,oracle and MYSQL

Get current date In sql server ,oracle and MYSQL

 

 

In sql server

 

Select getdate()

From table

 

 

 

In oracle

 

Select SYSDATE

From table

 

In MYSQL

 

Select CURDATE()

From table