111334

如 sql语句 select userid, username ,time from User表只返回id,名称,时间三个字段。 这个语句有语法错误吗https://leancloud.cn:443/1.1/classes/Article?cql=select articleName,articleNum from Articlel where categoryId=‘57148896df0eea0064a69ee1’ 查询出来还是select * from Article 的结果,去不字段都出来了 @sdjcw

你们服务器返回的时间格式是UTC 请问怎样转换为 yyyy.MM.dd HH:mm:ss格式的时间 ,我转换出时间总对不上,我用的java 我的代码: public static String utc2Local(String utcTime, String utcTimePatten, String localTimePatten) { SimpleDateFormat utcFormater = new SimpleDateFormat(utcTimePatten); utcFormater.setTimeZone(TimeZone.getTimeZone("UTC")); Date gp…