Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Convert to Month Name and Year 1

Status
Not open for further replies.

Tech2377

Programmer
Nov 13, 2007
81
0
0
I would like to add in another field based off the pv.Visit

Example: Currently, the query is reporting a date as such:
'2007-10-25 10:15:00.000'

I would like a Field that converts this into one field 'October 2007'. This would allow me to do easier work in Crystal. Any help is appreciated.

Code:
SELECT pp.PatientId, 
dbo.FormatName(pp.Prefix, pp.[First], pp.Middle, pp.[Last], pp.Suffix) AS PatName, 
pv.Visit, 
df.ListName,
pv.TicketNumber

FROM PatientVisit pv
INNER JOIN PatientProfile pp ON pv.PatientProfileId = pp.PatientProfileId 
INNER JOIN DoctorFacility df ON pv.DoctorId = df.DoctorFacilityId

WHERE ......
 
Code:
Select DateName(Month, GetDate()) + ' ' + Convert(VarChar(4), Year(GetDate()))



-George

"The great things about standards is that there are so many to choose from." - Fortune Cookie Wisdom
 
I'm getting January 2008 for all ... ?
 
Because you need to replace [!]GetDate()[/!] with your actual column name. [wink]

-George

"The great things about standards is that there are so many to choose from." - Fortune Cookie Wisdom
 
George ...

Boy how did I miss that last one ... so obvious after I read your response. I tried a different approach ... however it does what I want it to (to an extent). Months of November and December get put out of order due to the month # starting with a '1'. Any thoughts on a workaround?

Code:
SELECT  pp.PatientId, 
	dbo.FormatName(pp.Prefix, pp.[First], pp.Middle, pp.[Last], pp.Suffix) AS PatName, 
	pv.Visit, 
	MonthNumber=convert(varchar(2),datepart(month,pv.visit)), 
	(Select DateName(Month, pv.visit)) AS VisitMonth,  
	(SELECT Convert(VarChar(4), Year(pv.visit))) AS VisitYear,
	df.ListName,
	pv.TicketNumber

FROM    PatientVisit pv
	INNER JOIN PatientProfile pp ON pv.PatientProfileId = pp.PatientProfileId 
	INNER JOIN DoctorFacility df ON pv.DoctorId = df.DoctorFacilityId

WHERE ....

ORDER BY [VisitYear], [MonthNumber] ASC
 
Month of October too ... oops

So those 3 months get out of order due to starting with a '1'
 
Order By PV.Visit



-George

"The great things about standards is that there are so many to choose from." - Fortune Cookie Wisdom
 
Code:
SELECT  pp.PatientId,
    dbo.FormatName(pp.Prefix, pp.[First], pp.Middle, pp.[Last], pp.Suffix) AS PatName,
    pv.Visit,
    MonthNumber=convert(varchar(2),datepart(month,pv.visit)),
    (Select DateName(Month, pv.visit)) AS VisitMonth,  
    (SELECT Convert(VarChar(4), Year(pv.visit))) AS VisitYear,
    df.ListName,
    pv.TicketNumber

FROM    PatientVisit pv
    INNER JOIN PatientProfile pp ON pv.PatientProfileId = pp.PatientProfileId
    INNER JOIN DoctorFacility df ON pv.DoctorId = df.DoctorFacilityId

WHERE ....

ORDER BY [VisitYear], [COLOR=red]pv.Visit[/color] ASC
 
Let me comment on your code just a bit. Please don't take this personally. The only reason I mention this stuff is to help you out.

1. There are 2 ways to alias a column.
a) MonthNumber = Convert(....
b) Convert(....) As MonthNumber

Both methods are acceptable, but I suggest you pick one and stick with it. In your query, you are using both methods.

2. You should, as much as possible, pass some 'work' on to the client application. For example, you are converting the MonthNumber to a varchar(2) before passing the data back. Why? Since DatePart returns an integer, why don't you just return that from the query? I'm sure Crystal can convert this to a string just as easily as SQL Server, but by having Crystal Reports doing more work, and SQL Server doing less work, your app will be more scalable. Will this change have much affect? No. But if you take this approach to all of your queries, eventually it will make a difference.

3. Your syntax, while it does work, is 'more' than it needs to be.

This: (Select DateName(Month, pv.visit)) AS VisitMonth,

Should just be:
DateName(Month, pv.visit) AS VisitMonth,

Again. It won't make much difference, but it all adds up.



-George

"The great things about standards is that there are so many to choose from." - Fortune Cookie Wisdom
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top