ProfReynolds
Programmer
Is there a way to select rows based on the type of data that is in them???
For instance:
SELECT * FROM Table
WHERE FieldName.DataType NOT AN INTEGER
I would settle for something like
SELECT * FROM Table
WHERE CAST(FieldName AS int) == ErrorCode
Thanks!
For instance:
SELECT * FROM Table
WHERE FieldName.DataType NOT AN INTEGER
I would settle for something like
SELECT * FROM Table
WHERE CAST(FieldName AS int) == ErrorCode
Thanks!