WebDB - SQLLite LIKE 语法...逃避我

发布于 2025-01-01 10:42:16 字数 595 浏览 1 评论 0原文

尝试这些:

tx.executeSql("SELECT * FROM Animal_Traits WHEREanimalNameLIKE%?%ORtraitLIKE%?%ORDERBYanimalName", [searchValue,searchValue],

用这个,我被告知语法在 % 符号上中断...所以如果我尝试这个:

tx.executeSql("SELECT * FROM Animal_Traits WHERE AnimalName LIKE '%'?'%' OR Trait LIKE '%'?'%' ORDER BY AnimalName", [searchValue, searchValue],

它告诉我 ? 符号上的语法中断...(猜猜第一个?)并且如果我尝试这个:

tx.executeSql("SELECT * FROM Animal_Traits WHERE AnimalName LIKE '%?%' OR Trait LIKE '%?%' ORDER BY AnimalName", [searchValue, searchValue],

它告诉我参数数量不匹配...grrr!

有人可以帮助我吗?

谢谢!

Trying these:

tx.executeSql("SELECT * FROM Animal_Traits WHERE animalName LIKE %?% OR trait LIKE %?% ORDER BY animalName", [searchValue, searchValue],

with THIS one, I am told that the syntax breaks on the % symbol...so if I try THIS:

tx.executeSql("SELECT * FROM Animal_Traits WHERE animalName LIKE '%'?'%' OR trait LIKE '%'?'%' ORDER BY animalName", [searchValue, searchValue],

and it tells me the syntax breaks on the ? symbol... (guess the first one?) AND IF I TRY THIS:

tx.executeSql("SELECT * FROM Animal_Traits WHERE animalName LIKE '%?%' OR trait LIKE '%?%' ORDER BY animalName", [searchValue, searchValue],

It tells me that the number of arguments do not match... grrr!

Can someone help me please.

thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

独自唱情﹋歌 2025-01-08 10:42:16

您需要这样做:

... WHERE animalName LIKE '%' || ? || '%' OR trait LIKE '%' || ? || '%'

|| 是一个字符串连接器。问号应该在引号之外。

You need to do this:

... WHERE animalName LIKE '%' || ? || '%' OR trait LIKE '%' || ? || '%'

The || is a string concatenator. And the question mark should be outside of the quotes.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文