DATE Functions tutorial in PHP
If we want to get current date then we can use below shown sql query :
SELECT CURRENT_DATE(); OR We can use
SELECT CURDATE();
If we want to get current date with time then we can use below sql query :
SELECT SYSDATE();
we can also use
SELECT NOW();
If we want to find out month from sql query then we can use below shown sql query :
SELECT MONTH("2019-10-15 09:34:21") AS DATE;
Comments
Post a Comment