MySQL 8 ha le funzioni finestra ! Pertanto, puoi scrivere la tua query in questo modo:
SELECT username,
count(sentSmsId) OVER (partition by userId)
FROM sentSmsTable
JOIN userTable ON userId = sentUserId;
MySQL 8 ha le funzioni finestra ! Pertanto, puoi scrivere la tua query in questo modo:
SELECT username,
count(sentSmsId) OVER (partition by userId)
FROM sentSmsTable
JOIN userTable ON userId = sentUserId;