Click here to Skip to main content
15,915,508 members
Home / Discussions / Database
   

Database

 
QuestionUrgent help from an expert! Pin
JUNEYT28-Apr-06 14:16
JUNEYT28-Apr-06 14:16 
QuestionMS Access and C# Help Pin
achrafus28-Apr-06 11:38
achrafus28-Apr-06 11:38 
AnswerRe: MS Access and C# Help Pin
Colin Angus Mackay28-Apr-06 21:14
Colin Angus Mackay28-Apr-06 21:14 
QuestionAccess Databases Pin
QC_200028-Apr-06 4:00
QC_200028-Apr-06 4:00 
AnswerRe: Access Databases Pin
Rob Graham28-Apr-06 5:41
Rob Graham28-Apr-06 5:41 
GeneralRe: Access Databases Pin
QC_200028-Apr-06 5:59
QC_200028-Apr-06 5:59 
QuestionHow to FTP a File using SQL Server 2000? Pin
pubududilena28-Apr-06 3:57
pubududilena28-Apr-06 3:57 
QuestionUnpredicted behaviour i IN clause Pin
qur28-Apr-06 2:42
qur28-Apr-06 2:42 
Please see my problem below:

Table structure:
tmpItemPrice(ItemPriceID bigint not null , Thickness varchar(255))

Row1
ItemPriceID: 1
Thickness: xyz

Select ItemPriceID
From tmpItemPrice
Where IsNumeric(Thickness) = 1 and Cast(Thickness as float) <= 0

When above query runs it give my type conversion error which is logical as Thickness is not numeric. But when we use this query in IN clause as shown below it works fine.

select *
from tmpItemPrice
Where ItemPriceID in ( Select ItemPriceID
From tmpItemPrice
Where IsNumeric(Thickness) = 1 and Cast(Thickness as float) <= 0 )


So my question are:
- what is the reason behind it?
- Is it right to use it in this way?

Thanks
Questionsearch case insensitive in access Pin
klakero28-Apr-06 1:16
klakero28-Apr-06 1:16 
QuestionRe: search case insensitive in access Pin
Eric Dahlvang28-Apr-06 5:47
Eric Dahlvang28-Apr-06 5:47 
QuestionEnterprise library Pin
WDI27-Apr-06 23:33
WDI27-Apr-06 23:33 
QuestionQuery on UNION Query Pin
DiligenZ27-Apr-06 19:00
DiligenZ27-Apr-06 19:00 
AnswerRe: Query on UNION Query Pin
Colin Angus Mackay27-Apr-06 20:38
Colin Angus Mackay27-Apr-06 20:38 
QuestionSQL connection issue with window Xp SP2 Pin
Lisana27-Apr-06 5:30
Lisana27-Apr-06 5:30 
AnswerRe: SQL connection issue with window Xp SP2 Pin
Colin Angus Mackay27-Apr-06 6:01
Colin Angus Mackay27-Apr-06 6:01 
GeneralRe: SQL connection issue with window Xp SP2 Pin
Lisana27-Apr-06 6:07
Lisana27-Apr-06 6:07 
GeneralRe: SQL connection issue with window Xp SP2 Pin
Jerry Hammond27-Apr-06 10:03
Jerry Hammond27-Apr-06 10:03 
QuestionHow to create a schema? Pin
Goalie3527-Apr-06 4:19
Goalie3527-Apr-06 4:19 
AnswerRe: How to create a schema? Pin
Eric Dahlvang27-Apr-06 4:44
Eric Dahlvang27-Apr-06 4:44 
AnswerRe: How to create a schema? Pin
Frank Kerrigan27-Apr-06 4:47
Frank Kerrigan27-Apr-06 4:47 
QuestionSelect * From [Orders] IN '' [ODBC;Driver= ... Pin
Thomas Wells27-Apr-06 3:53
Thomas Wells27-Apr-06 3:53 
QuestionDatabase relationship problem Pin
ADY00726-Apr-06 23:37
ADY00726-Apr-06 23:37 
AnswerRe: Database relationship problem Pin
Colin Angus Mackay27-Apr-06 1:15
Colin Angus Mackay27-Apr-06 1:15 
GeneralRe: Database relationship problem Pin
ADY00727-Apr-06 1:23
ADY00727-Apr-06 1:23 
AnswerRe: Database relationship problem Pin
QC_200028-Apr-06 6:10
QC_200028-Apr-06 6:10 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.