Viewing 5 posts - 1 through 5 (of 5 total)
Store it in a varchar field.
What if the number is 0800 COFFEE?
If its varchar it can save telephone numbers in all formats.
Regards
Anton
November 9, 2004 at 10:30 pm
Either I am misunderstanding the question or something, but I disagree with the answer.
The correct answer should be a syntax error,as the programer produced a result that he (or she)...
October 19, 2004 at 12:07 am
Hi, this is not to difficult if the numbers are only in the front.
~~begin Sample~~
Create table #temp (value varchar(20))
Insert into #Temp (value) values ('15')
Insert into #Temp (value) values ('15B')
Insert into...
August 5, 2004 at 12:43 am
In SQL 2000 "dynamic SQL" is not recompiled every time, but rather cached in on the server.
From MSDN:
When SQL Server receives a call to sp_executesql, it automatically checks the...
July 29, 2004 at 1:43 am
The example will work well for Intranet sites, but would become a security risk for Internet Sites.
Reason:
From the article; "....Note that the value attribute contains the primary key value of...
June 10, 2004 at 11:43 pm
Viewing 5 posts - 1 through 5 (of 5 total)