gpt4 book ai didi

android - 在 Sqlite 中搜索查询

转载 作者:行者123 更新时间:2023-11-29 16:08:08 24 4
gpt4 key购买 nike

我在数据库中有一些项目。我使用“like”关键字进行过滤

查询:mCursor = mDb.query(listTable, new String[] { ID_rs,
Item_name, item_code, Unit_code, Tot_Amt, dis_count, },
Item_name + "like '%"+ mix + "%' ORDER BY "
+ Item_name + "ASC", null, null, null, null, null);

例如:数据库中的值 1.SAKTHI 预拌粉 2. curry 混合 3.混合物

我的结果: 1.SAKTHI 预拌粉 2. curry 混合 3.混合物

但是我需要“curry Mix, Mixture”作为我的输出,我怎样才能得到它。帮帮我!

最佳答案

继续你的评论,

你可以尝试使用语法

Item_name + " like '" + mix + "%' OR " + Item_name + " like '% " + mix + "%'"

基本上,

  • 第一个匹配以 Item_name 开头的,
  • OR 附加了空格后跟 Item_name 的条目。 Aka 是一个新词。 (注意 % 后的空格)

关于android - 在 Sqlite 中搜索查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16249574/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com