Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 asp.net 和 MySQL,我想制作一个 2 级评论系统。这是桌子设计:
有没有我可以用来组织评论的 sql 语句,或者它必须是服务器端的。2 级评论系统的示例。
评论 1
评论 2
谢谢
首先,我建议不要使用 smallint 作为主键。只需使用 int。Smallint 将在 32,767 行后耗尽空间。
对于 DateTime,您要使用实际类型 DateTime,而不是 TimeStamp,并将默认值设置为 GetDate()
要获得“根”评论,只需按 ReplyTo 为 Null 过滤,然后按 DateTime 排序。