question:
how can i select regardless of upper and lower cases?
background:
i use the following select statement to filter a table:
select * from myTable where textField == myTextVariable;
issue:
sometimes the text field is uppercase and the text variable is lower case:
example:
textField: “some text”
myVariable: “SOME text”
(text Field == myVariable) = false
i tried:
select * from myTable where strUpr(textField) == strUpr(myTextVariable);
but this does not compile (AX2012)…