Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.
SELECT m_id, COUNT(m_id) count
FROM test
GROUP BY m_id
HAVING count>1
select m_id, t_id, count(m_id) as cnt from table where cnt>1 group by m_id