Use SQL server 2008 R2
I want to make a simple select
that using a GETDATE()
show a specific date format without year:
day / month
This select
gives me the values but in separate columns
SELECT MONTH(GETDATE()), Day(GetDate())
I need to do it but in this example format: day 1 month December
Date
1/12
I tried this:
SELECT (MONTH(GETDATE())/ Day(GetDate())) as Fecha
the result is:
Date
0