MySQL 8 má funkce oken ! Proto do něj můžete napsat svůj dotaz takto:
SELECT username,
count(sentSmsId) OVER (partition by userId)
FROM sentSmsTable
JOIN userTable ON userId = sentUserId;
MySQL 8 má funkce oken ! Proto do něj můžete napsat svůj dotaz takto:
SELECT username,
count(sentSmsId) OVER (partition by userId)
FROM sentSmsTable
JOIN userTable ON userId = sentUserId;