How to identify if a float value exists or not in a data table's column?
-
Hi, Is there any way to identify any float values are there inside a datatable's coulmn. For example : if my data table's column contains the value like this 1,2,2.2 I need to identify that this column has a float value 2.2..Else if my column is having 1,2,3 then no float values in the column. Please show me a right way .. Thanks much, R.P.M
-
Hi, Is there any way to identify any float values are there inside a datatable's coulmn. For example : if my data table's column contains the value like this 1,2,2.2 I need to identify that this column has a float value 2.2..Else if my column is having 1,2,3 then no float values in the column. Please show me a right way .. Thanks much, R.P.M
not sure got your clue...but how about using WHERE clause in SQL...something like "where floatcol = 2.2"?? << >>