Saved Bookmarks
| 1. |
How to find particular month in table using sql server 2008 R2 |
|
Answer» Hi, SELECT DATENAME(MONTH, all you have to do is REPLACE the VALUES of <> tags with your own values Example QUERY.: SELECT DATENAME(month, JoinDate) AS "Month Name" FROM EMPLOYEE hope it help you. |
|