我正在用 php 设计一个博客站点,用户可以在其中手动将相关的帖子添加到帖子中。
我想对所有相关的帖子使用自动增量整数。
这是表格:
Blog:
-id
-related ( it's 0 if there aren't related posts or it contain an autoincremet integer that it is the same for all posts related )
-id_user
-title
-body
-date
如果可能的话,我不喜欢使用“相关表”以避免复杂的查询。
因此,在这种情况下,我需要一种获取自动递增整数的方法,或者您可以建议我其他解决方案:)