选择查询 - WebSQL

发布于 2025-01-03 04:48:30 字数 390 浏览 3 评论 0原文

我有以下代码来选择一行..当我使用 getRecords("Peter Sam"); 调用该函数时显示一条记录..但是,如果我只是通过 getRecords("Peter");它说“没有结果”。

  getRecords = function(cname){
        db.transaction(function(tx) {
            tx.executeSql('SELECT * FROM contacts WHERE (cname LIKE ?)', [cname], renderResults);
        });
    }

“选择”查询中“LIKE”的正确用法是什么?顺便说一句,我在哪里可以参考 WebSQL 的 SQL 语法?

谢谢

I've the following code to select a row.. When I call the function with getRecords("Peter Sam"); one record is shown.. However if I just pass getRecords("Peter"); it says "No results".

  getRecords = function(cname){
        db.transaction(function(tx) {
            tx.executeSql('SELECT * FROM contacts WHERE (cname LIKE ?)', [cname], renderResults);
        });
    }

What is the correct usage of "LIKE" in "Select" query?? BTW where do I refer SQL syntax for WebSQL?

Thanks

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

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

发布评论

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

评论(3

百善笑为先 2025-01-10 04:48:30
getRecords = function(cname){
    db.transaction(function(tx) {
        tx.executeSql('SELECT * FROM contacts WHERE (cname LIKE ?)', ['%'+cname+'%'], renderResults);
    });
}
getRecords = function(cname){
    db.transaction(function(tx) {
        tx.executeSql('SELECT * FROM contacts WHERE (cname LIKE ?)', ['%'+cname+'%'], renderResults);
    });
}
与往事干杯 2025-01-10 04:48:30

在事务 SQL 中,您可以使用 % 作为通配符。
例如:

SELECT * FROM contacts WHERE cname LIKE ?%

但是,WebSQL 已停止使用,因此我不建议使用此方法。

In transact SQL you would use a % as a wild card.
something like:

SELECT * FROM contacts WHERE cname LIKE ?%

However, WebSQL has been discontinued so I don't suggest using this method.

只是我以为 2025-01-10 04:48:30

使用字符串连接:

SELECT * FROM contacts WHERE cname LIKE '%' || ? || '%'

Use string concatenation:

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