SQL commands for practical file only for IP students
SQL commands for practical file only for IP students
Math Functions
String Functions
Date Functions
21. How do you get the current date using CURRENT_DATE or GETDATE()?
22. How can you get the current time using CURRENT_TIME or NOW()?
23. How do you get the current date and time using CURRENT_TIMESTAMP or NOW()?
24. How can you extract the year from a date using YEAR()?
25. How do you extract the month from a date using MONTH()?
26. How can you extract the day from a date using DAY() or DAYOFMONTH()?
27. How do you calculate the difference between two dates using DATEDIFF()?
28. How can you find the day of the week for a given date using DAYOFWEEK()?