Advertisement

06.07.2008 at 07:07AM PDT, ID: 23466037
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

9.9

Convert varchar to type int

Asked by ALawrence007 in SQL Server 2005, MS SQL Server

Tags:

Hi,

Below is code to get the total transaction price per week from my SQL 2000 database. I am trying to get the total in a pivot type of results, because I am eventually exporting this from my database into excel. I get an error saying :
Syntax error converting the varchar value '1/1/2007' to a column of data type int.
and I don't know why and what I did wrong.

Can someone please help me on this issue?
Thanks in advance.Start Free Trial
1:
2:
3:
4:
5:
6:
7:
8:
Select DATEPART(YEAR, [Transaction].Time) AS Year,
SUM(
CASE WHEN DATEPART(Week, [Transaction].Time) BETWEEN '1/1/2007' AND '2/1/2007'  
Then TransactionEntry.Price * TransactionEntry.Quantity Else 0 End
) As TransactionPrice
FROM         TransactionEntry INNER JOIN
[Transaction] ON TransactionEntry.TransactionNumber = [Transaction].TransactionNumber
Group By DATEPART(YEAR, [Transaction].Time)
[+][-]06.07.2008 at 07:27AM PDT, ID: 21735630

View this solution now by starting your 7-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

 

About this solution

Zones: SQL Server 2005, MS SQL Server
Tags: SQL
Sign Up Now!
Solution Provided By: angelIII
Participating Experts: 1
Solution Grade: A
 
 
 
Loading Advertisement...
20080716-EE-VQP-32 / EE_QW_2_20070628