I have 2 tables, one that had a date value and one that has a date time value and i need to join the 2 together. I have tried doing a convert as part of the join but sql server doesnt seem to like it.Does anyone have any idea how to do this?The field FDFImportParsed.FileDate is the plain date without the time and TransferSendHeader.[Date] has the time on it that i want to ignore.This is my attempt at getting it working but im having issues and SQL server is saying Server: Msg 170, Level 15, State 1, Line 3Line 3: Incorrect syntax near '.'. SELECT FDFImportParsed.ID, TransferSendHeader.ID AS TransferSendHeaderID, FDFImportParsed.FileDateFROM FDFImportParsed LEFT OUTER JOIN TransferSendHeader ON CONVERT(varchar, FDFImportParsed.FileDate, 103) = CONVERT(TransferSendHeader.[Date], 103) AND FDFImportParsed.Field11 = TransferSendHeader.TransferNumberWHERE (FDFImportParsed.Field1 = '11')