MySQL 8 có chức năng cửa sổ ! Do đó, bạn có thể viết truy vấn của mình trong đó như sau:
SELECT username,
count(sentSmsId) OVER (partition by userId)
FROM sentSmsTable
JOIN userTable ON userId = sentUserId;
MySQL 8 có chức năng cửa sổ ! Do đó, bạn có thể viết truy vấn của mình trong đó như sau:
SELECT username,
count(sentSmsId) OVER (partition by userId)
FROM sentSmsTable
JOIN userTable ON userId = sentUserId;