我有一个女巫表格,其中包含十进制数据,如-50.40到+50.50 所以我想从30.00到40.32获取数据 我写了像
这样的查询select column from table where column in(30.00,40.32)
但是这只给出了具有30.00和40.32值的行。
答案 0 :(得分:0)
您没有给出范围而是给出一组值。您应该定义限制
select column from table where column >= 30.00 and column <= 40.32
答案 1 :(得分:0)
要指定包含范围的值,您可以使用BETWEEN
select column
from table
where column between 30.00 and 40.32