Fetching data from a table in a range. The range is in decimal in db2 -
I have a table in the witch, in which data in decimal is -50.40 to +50.50. To get data from 30.00 to 40.32
I wrote the query like
Select the column from the table where the column (30.00,40.32) but it only gives those rows Are those who have 30.00 and 40.32 worth.
You are not giving a limit, but you set one column of values to the limit of columns The
should select the column where the column & gt; = 30.00 column & lt; = 40.32
Comments
Post a Comment