Hi support,
How can I use the LIKE operator? I want to do this:
WHERE OrderRelationID LIKE '%xyz%' but then using a parameter, see below. What is the correct syntax please?
SELECT OrderID, OrderDate, OrderTypeID FROM Orders
WHERE
__ OrderRelationID LIKE :OrderRelationID__
AND
(OrderDate > :startDatePicker AND OrderDate < :endDatePicker)