Sì, puoi usare dense_rank
ed evita la duplicazione del codice:
select col
from (select col, dense_rank() over (order by col) rnk from tbl)
where rnk <= 3
Sì, puoi usare dense_rank
ed evita la duplicazione del codice:
select col
from (select col, dense_rank() over (order by col) rnk from tbl)
where rnk <= 3
Come proteggere i database PostgreSQL dagli attacchi informatici con SQL Firewall
Risoluzione dei problemi:errore MySQL/MariaDB n. 1044 e n. 1045 accesso negato all'utente
Database di backup rapido di SQL Server | Come pianificare Automatizzare ed eliminare SQL Express Backup
Come convertire query MySQL in query MSSQL