Hi,
How to get day from date in SQL? For your information I am working on the MySQL database.
Thanks
You can use the following queries to get the data:
select date_format(now(),'%e')as day; select day(now()) as day;
Post Answer
Preview:
Ads