以下查询的查询结果是什么。
select * from Comment where photo_id = "xxx";
我的订单会是最近一次订购的comment_id 吗?
或者
我的订单会按照 Desc 的最高分到最低分排序吗?
class Comment(Model):
photo_id = UUID(primary_key=True)
comment_id = TimeUUID(primary_key=True, default=uuid1) # second primary key component is a clustering key
score = Integer(rpimary_key=True , clustering_order = "DESC")
comment = Text()