sql >> データベース >  >> RDS >> Mysql

単純なSQLクエリ、結果の結合と除算

    速くて汚い:

    select (a.count_one / b.count_two) * 100 as final_count from 
    (select field_one, count(*) as count_one from table1 group by field_one) a,
    (select field_two, count(*) as count_two from table2 group by field_two) b
    where a.field_one = b.field_two
    


    1. MySQL多対多選択

    2. MySQLスキーマの絶えず変化する要件に対処するための戦略?

    3. 何が良いですか-多くの小さなテーブルまたは1つの大きなテーブル?

    4. MariaDBの日時値に秒を追加する8つの方法