I am trying to accomplish the equivilant of the following SQL:
SELECT ImageId, BarcodeId, ScanStatus, CAST(QualityFactor AS numeric) AS NumericQualityFactor
FROM Image
WHERE
(isnumeric(BarcodeId) = 1) AND
(ScanStatus = 'Success') AND
(NOT (BarcodeId IS NULL)) AND
(BarcodeId <> '') AND
(isnumeric(QualityFactor) = 1) AND
(CAST(QualityFactor AS decimal) > 69)
ORDER BY ImageId
How do I filter using the CAST and the isnumeric functions in LLBL?
Thanks,
Tom