Sqlite 查询“AND”
我被困在一个可以继续执行 sqlite SELECT 查询的地方。我的查询是这样的。我不知道这是正确还是错误。请帮我。
NSString *querySQL = [NSString stringWithFormat: @"SELECT * FROM CLAIMS WHERE DATE = \"%@\" AND TIME = \"%@\"",splitdate,splittime];
任何帮助表示赞赏。 谢谢
I am stuck at a place where i am able to proceed with a sqlite SELECT query. My query is like this. I dont know if it tis correct or wrong. Please help me.
NSString *querySQL = [NSString stringWithFormat: @"SELECT * FROM CLAIMS WHERE DATE = \"%@\" AND TIME = \"%@\"",splitdate,splittime];
Any help is appreciated.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
SQL 使用
'
作为字符串,因此至少您的查询应该如下所示:进一步的步骤是使这些内容成为参数:
进一步的改进是使用 SQL 类型
datetime< /code> 作为该字段,因此您只需要 1 个而不是 2 个:
SQL uses
'
for strings, so at the very least your query should look like:A further step would be to make those things parameters:
And a further improvement is to use the SQL type
datetime
for the field so you'll only need one instead of 2: