Visualizzazione dei risultati da 1 a 10 su 12

Visualizzazione discussione

  1. #8
    Utente di HTML.it L'avatar di badaze
    Registrato dal
    Jun 2002
    residenza
    Lyon
    Messaggi
    5,372
    Non testato. Comunque l'idea c'è.

    Select a.store_ric, a.testo_ric, a.prezzo_ric, a.fatturato_sing, a.maxv
    from
    (select store_ric, testo_ric, prezzo_ric, fatturato_sing, max(n_venduti) as maxv)
    from tabella
    where n_venduti>100 group by store_ric) a
    inner join
    (Select store_ric, testo_ric, max(n_venduti) as maxv from tabella group by store_ric, testo_ric) b
    on a.store_ric = b.store_ric and a.testo_ric = b.testo_ric and a.maxv = b.maxv
    order by a.maxv desc limit 10
    Ultima modifica di badaze; 25-02-2017 a 14:37
    Ridatemi i miei 1000 posts persi !!!!
    Non serve a nulla ottimizzare qualcosa che non funziona.
    Cerco il manuale dell'Olivetti LOGOS 80B - www.emmella.fr

Permessi di invio

  • Non puoi inserire discussioni
  • Non puoi inserire repliche
  • Non puoi inserire allegati
  • Non puoi modificare i tuoi messaggi
  •  
Powered by vBulletin® Version 4.2.1
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved.