请帮我写一下android开发中的查询
"SELECT * FROM '" + pendingpost_tb + "'" +
" where '" + AppUtil.post_type + "'" + "=history " +
" order by '" + AppUtil.datetime + "'" + " DESC"
我希望按日期和时间的desc顺序列出AppUtil.post_type,我从数据库中获取的日期时间。
答案 0 :(得分:0)
你的陈述有问题。 我认为这是一份有效的声明:
"SELECT * FROM " + pendingpost_tb +
" where " + AppUtil.post_type + "='history'" +
" order by " + AppUtil.datetime + " DESC"
你确定AppUtil.datetime是你的专栏名吗?
此外,最好使用PreparedStatments。我不确定PreparedStatement是否适用于android,但必须有一些与之相当的东西。