我正在尝试为我的网站制作通知系统:
这是表结构
notification
-----------------
id (pk)
userid
notification_type (for complexity like notifications for pictures, videos, apps etc.)
notification
time
notificationsRead
--------------------
id (pk) (i dont think this field is required, anyways)
lasttime_read
userid
现在我的理解是,当添加通知时,我们需要找到用户朋友并将所有这些行插入notification
表中,对吗?如果这是正确的,那么实现这一目标的最佳方法是什么?
- 触发器?
- 写T-SQL(服务器端的sql查询)选择所有朋友然后使用SQL批量复制?