I have a select statement that is failing miserably when I connect through the PVX-ODBC.
I receive the error:
the sql is:
I have no ideas what the problem with this sql statement is. I am pretty sure this is a PVX specific error (tested it under SQL Server) but don't really know.
Any help would be apreciated.
_______________________________________
Ignorance is a beautiful thing:
You don't know what you can't do...
I receive the error:
Code:
Invalid Operand for Operator: >=
Code:
select count(*)
from SO1_SOEntryHeader gen,
SO_04SOHistoryDetail det
where gen.SalesOrderNumber = det.SalesOrderNumber and
gen.CustomerNumber = 'qqqqqqq' and
det.ItemNumber = 'qqqqqqqqqqqqqqq' and
gen.SalesOrderDate >= '01-Jan-2003' and
gen.SalesOrderDate <= '31-Dec-2003'
Any help would be apreciated.
_______________________________________
Ignorance is a beautiful thing:
You don't know what you can't do...