String args[] = {uploadedStatus,"2013-01-01",date};
String sql = "select * from TPersonalTaskResult where isUploaded=? and Date(substr(timeStamp,1,10)) between Date(?) and Date(?)";
其中substr是指从第几个字符串起截取几个 , 注意从0开始, 不是从1开始
String sql = "select * from TPersonalTaskResult where isUploaded=? and Date(substr(timeStamp,1,10)) between Date(?) and Date(?)";
其中substr是指从第几个字符串起截取几个 , 注意从0开始, 不是从1开始