|
Here's a quick SQL tip on how to get records beginning with numbers only. Use the query string LIKE '[0-9]%' For example:
SELECT u.UserId, u.UserName
FROM dbo.aspnet_Users u WHERE AND u.UserName LIKE '[0-9]%'
ORDER BY... more »
|
|
|
|
|
There's a good chance that if you're database driven application is running into the following sql error message that says "String or binary data would be truncated", that the error is being caused by an issue in a SQL statement or in... more »
|
|
|
|