2
votes
How do I sort a VARCHAR column in SQL server that contains numbers?
There are a few possible ways to do this.
One would be
SELECT
...
ORDER BY
CASE
WHEN ISNUMERIC(value) = 1 THEN CONVERT(INT, value)
ELSE 9999999 -- or something …
1
vote
How can I insert random values into a SQL Server table?
I've had a play with this, and found a rather hacky way to do it with the use of an intermediate table variable.
Once @randomStuff is set up, we do this (note in my case, @MyTable is a tabl …
