I encountered this error:
Error converting data type nvarchar to datetime
When inputting a date in the format of 26/01/2017 as a string literal. I'm inserting using this code in SQL Server:
CONVERT(DATETIME, @PaymentDate, 104)
Can someone please help me with this?