Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
select substring(FLD, 3, len(rtrim(FLD))-2) as NumericField
from TBL
where substring(FLD, 2, 1) = 'T'
select case
when isnumeric(substring(FLD, 3, len(rtrim(FLD))-2)) > 0 then substring(FLD, 3, len(rtrim(FLD))-2)
else 0
end as NumericField
from TBL
where substring(FLD, 2, 1) = 'T'