以下是一个示例数据集。
id list_id user_id times
2 1 8 2017-05-25 10:27:18
4 2 8 2017-05-26 12:58:58
6 1 8 2017-06-09 17:28:00
7 2 8 2917-06-09 19:27:36
我在表格中有多个list_id。我想根据最新日期获取一个list_id。请帮帮我们。我正在使用此查询,但我没有成功。
select *
from class_history
where user_id=8
GROUP
BY list_id
ORDER by id DESC
或
select *
from class_history
where user_id=8
GROUP
BY list_id
ORDER by time DESC
感谢您的支持。
答案 0 :(得分:-1)
你有不同的for (index,value) in entryPoint.enumerated(){
print("Zero",value[0])
print("One",value[1])
}
,因此你将无法获得明确的id
,你需要这样做:
list_id