Does anyone know how to use the '%' in Crystal Reports?
In SQL you can use this to search for a particular description through a field. An example would be;
SELECT ITEM
FROM INVENTORY
WHERE ITEM LIKE '%BEARING%';
This query would than find any items with the word 'BEARING' in them and display them.
Any help would be much appreciated! Thank you!
In SQL you can use this to search for a particular description through a field. An example would be;
SELECT ITEM
FROM INVENTORY
WHERE ITEM LIKE '%BEARING%';
This query would than find any items with the word 'BEARING' in them and display them.
Any help would be much appreciated! Thank you!