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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Conversion failed when converting date and/or time from character string 1

Status
Not open for further replies.

dwg23

Technical User
Oct 21, 2002
151
0
0
US
Hello,
I am attempting to get the number of days between two dates.
I have used the datediff function to do this and keep getting the "Conversion failed when converting date and/or time from character string" Error.
Both fields are a datetime field and I have looked for bad data in all of the cells so I am at a loss as to what is wrong.

Idea's?
Code:
DATEDIFF(DAY, 'tblarInvoice.InvoiceDate','tblarCashReceipt.PaymentDate') As 'Total Days'
 
Try dropping single quotes:

Code:
DATEDIFF(DAY, tblarInvoice.InvoiceDate, tblarCashReceipt.PaymentDate) As 'Total Days'

What are the values of tblarInvoice.InvoiceDate and tblarCashReceipt.PaymentDate ?

Have fun.

---- Andy

A bus station is where a bus stops. A train station is where a train stops. On my desk, I have a work station.
 
WOW! Talk about can't see the trees for the forest!
Dropping the single quotes worked.
The values were just normal date time of when the Invoice was printed and payment received.

Thanks!
 
Most probably you didn't think single quotes make a literal string value out of the field names.

MSSQL Server has name delimiters and the name conventions are as follows:

DBNAME.Schema.TableName.ColumnName is a fully qualified name (with linked servers you even can prefix servername), typical schema is database owner (dbo) and the usuually sufficiently unique name is Tablename.Columnname, often enough even just the column name.

To allow spaces in names MSSQL offers name delimiters, so you can also write all parts of a name within square brackets like [dbo].[Table Name].[Column Name], and another delimiter for names is a double quote, so also "Table Name"."Column Name" would fit, but single quotes are string delimiters, not name delimiters.

In other databases (especially MySQL) name delimiters are backticks (`tablename`), that looks quote similar to single quotes. And in many other programming lagnuages both single and double quotes are string delimiters. Unfortunately there is no rule fitting any case, any database or programming language, you always have to switch your mindset to the current technology piece you use.

Bye, Olaf.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top