Jul 12, 2005 #1 KCWMS MIS Mar 25, 2004 38 US using SQL SERVER 2K I was writing a function to strip out non-numerics and found that SELECT ISNUMERIC('-') = 1. What!!!
using SQL SERVER 2K I was writing a function to strip out non-numerics and found that SELECT ISNUMERIC('-') = 1. What!!!
Jul 12, 2005 #2 Katy44 Technical User Dec 12, 2003 723 GB select convert(int,'-') brings back 0 so it looks like that's another way of sayinf zero! select '-'+3 brings back 3! Interesting. Upvote 0 Downvote
select convert(int,'-') brings back 0 so it looks like that's another way of sayinf zero! select '-'+3 brings back 3! Interesting.
Jul 12, 2005 #3 JamesLean Programmer Dec 13, 2002 3,059 GB Have a look at this thread for some more interesting info: thread183-1010578 --James Upvote 0 Downvote