I am attempting to create a fairly complex query but I am bogged down with some simple syntax.
Why is the following pulling D114, D114A, D114B etc. and anything else starting with D114 from the table?
I want the occurences of exactly "D114" only.
Keith
Why is the following pulling D114, D114A, D114B etc. and anything else starting with D114 from the table?
Code:
SET EXACT ON
select code, qty, each;
from dda;
where code="D114"
Keith