I have these values
'12345/1'
'23456/1'
'34567/1'
But occasionally these are submitted
'a1234/1'
How can I explicitly return results where the values are all numbers? I currently am doing this
SELECT SID FROM TRACE WHERE SID LIKE '_____%'
Thanks in advance!