sql >> Databáze >  >> RDS >> Mysql

porovnejte výsledek s jinou tabulkou mysql

Zkuste to;)

select
    star.type, star.min_amount, t.cnt, t.userids
from star
inner join (
    select  t1.type, count(t2.userid) as cnt, group_concat(t2.userid order by t2.userid) as userids
    from star t1
    inner join user_buys t2 on t1.min_amount <= t2.amount
    group by t1.type
) t on t.type = star.type
order by star.type

SQLFiddle DEMO ZDE



  1. Jak najít konkrétní řádek ve výsledku dotazu MySQL?

  2. Resetujte primární klíč PostgreSQL na 1

  3. mysql seznam kategorií a podkategorií

  4. Rails 4:Používejte MySql a MongoDB společně