我是社群。
我在php中编写了一个基本套接字,以复制聊天室用户发送的消息,这些用户已在数据库中注册,当用户发送消息时,所有已连接的用户都可以看到该消息,我在管理中有一个表格面板中向某些用户发送消息,即从html select发送消息,然后我在那里选择一个用户并发送消息,现在发生了什么?所有房间所有连接的用户都看到该消息,该如何过滤?这样只有选定的用户才能看到它?如何实施?
UPDATE TOP (q.QuantitySold) i
SET i.Converted = 1,
i.CartID = q.CartID,
i.ReservedDate = GETDATE()
FROM Inventory i
INNER JOIN
(
SELECT product.ProductID, sales.CartID, COUNT(sales.ID) AS QuantitySold
FROM Products product
INNER JOIN Sales sales ON sales.ProductID = product.ProductID
WHERE <conditions>
GROUP BY product.ProductID, sales.CartID
) q ON q.ProductID = i.ProductID
WHERE i.Converted = 0 AND i.CartID IS NULL