这条语句是在JAVA界面层有的!如:房屋单价是从1000——2000,SQL语句:select*from table where money between ? and ? 可以吗?但是我在数据库中价格只定义了一个字段是:H_price,请高手回答该怎么做?
2015-08-12 16:49
最佳答案
-
SQL 关键字 Between and,<,> 符号
-
假如声明表A,有字段a 类型为int,b 字段类型为nvarchar
-
select * from A where a between 1 and 10
-
也可以使用大小号,SQL 如下:
-
select * from A where a>=1 and a<=10
-
以上SQL就可以查询1-10范围的数据
-
下面的SQL 是字符串类型的:
-
select * from A where b between 'b1' and 'b10'