how to Check whether entered parameter is string or int
how to Check whether entered parameter value is string or integer in sql server store procedure
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Sibeesh VenuPosted Jan 2, 2015, 6:09 AM
http://stackoverflow.com/questions/9286152/using-if-isnumeric-as-argument
USE AdventureWorks2012;
GO
SELECT City, PostalCode FROM Person.Address WHERE ISNUMERIC(PostalCode)<> 1;
GO
Please accept and up vote if it helped you
Kindest Regards
Sibeesh
http://sibeeshpassion.com/