sql >> データベース >  >> Database Tools >> phpMyAdmin

条件付き動的フィルタリングのselect-whereにネストされたif

    joinをお探しですか およびgroup by

    select f.id,
           count(*) as num_rows,
           sum(tare) as sum_tare
    from history h join
         temp_fetch f
         on h.nom like concat('%', f.client, '%') or
            h.commune like concat('%', f.commune, '%')  or 
            h.type like concat('%', f.type, '%') or 
            h.mat like concat('%', f.matricule, '%') or 
            h.tare like concat('%', f.tare, '%')
    where f.cancled = 0
    group by f.id;
    



    1. SQL ServerManagementStudioの完全な正規表現構文

    2. sqlはasp.netで遅いssmsで速く実行されます

    3. MySQLテーブルを列の値で分割する

    4. VBAを使用してSQLテーブルにのみ新しいレコードを挿入する