pb如何实现模糊查询一个区间的内容

如图实现输入两个区间点击按钮能查询并在右表显示求助... 如图 实现输入两个区间 点击按钮能查询并在右表显示 求助 展开
 我来答
iamwangzhe2015
2012-07-12 · TA获得超过684个赞
知道小有建树答主
回答量:320
采纳率:100%
帮助的人:281万
展开全部
例如表名为room 类型字段为style,房间价格为price
在按房间价格查询按钮的clicked事件中编写如下代码:
dw_1.reset()

string ls_price1,ls_price2,ls_sql_old,ls_sql,ls_condition
ls_price1 = sle_2.text
ls_price2 = sle_3.text
if isnull(ls_price1) then
messagebox("提示","房间价格起始不能为空")
return
end if

if isnull(ls_price2) then
messagebox("提示","房间价格止不能为空")
return
end if
ls_sql_old = dw_1.getsqlselect()
ls_condition = " where price > '+ls_price1+' and price < '+ls_price2+' "
ls_sql = ls_sql_old + ls_condition
dw_1.setsqlselect(ls_sql)
dw_1.retrieve()
之后就是你想要得到的结果
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式