Microsoft
Software
Hardware
Network
Question : use the cast or convert function on a varchar field
I have a varchar column in my table that contains commodity codes. Most of these codes are numeric and I want to find all records that have a commodity code between 2 and 99. I have tried to use the following statment:
Select * from sca
where cast(sca_commcode as bigint) between 2 and 99
This produced an error that stated error converting data type varchar to bigint.
After viewing the records, I see that some of the commodity codes are text entries such as 'Engine'
Is there a way to use cast or convert (or someother function) to return a value of zero if the value is a text entry? I guess what I am looking for is functionality similar to the VB val function.
Answer : use the cast or convert function on a varchar field
please try this:
Select * from (
select * from sca where isnumeric(sca_commcode) = 1
) sq
where cast(sca_commcode as bigint) between 2 and 99
Random Solutions
Can't mount Exchange Information Store
Can files be copied programatically from SharePoint to another file system?
add ALL in combobox rowsource query
Unable to Activate Office 2007 Professional
Update Code through VBA
How do I update a subform combobox from another form that the subform called?
SSIS error code DTS_E_CannotAcquireConnect<wbr />ionfromCon<wbr />nectionMan<wbr />ager
Edot form data
Problem with Backup Configuration Wizard in SBS 2003 - "An unexpected error occurred (80070057). The parameter is incorrect"
Setting TextBlock Text Property dynamically