Ad
Code
Diff
  • -- Buatlah query sql untuk mendapatkan 10 pegawai dengan gaji terbesar.
    select * from employees order by salary desc limit 10;
    • --- Code Here
    • -- Buatlah query sql untuk mendapatkan 10 pegawai dengan gaji terbesar.
    • select * from employees order by salary desc limit 10;
Code
Diff
  • --Buatlah query sql untuk mendapatkan semua data transaksi 
    --yang customer nya bukan null, urutkan dari nama store terlebih dahulu dari A ke Z, 
    --baru urutkan berdasarkan total_price dari terbesar ke terkecil
    select * from transactions where customer is not null order by store, total_price desc;
    • --- Code Here
    • --Buatlah query sql untuk mendapatkan semua data transaksi
    • --yang customer nya bukan null, urutkan dari nama store terlebih dahulu dari A ke Z,
    • --baru urutkan berdasarkan total_price dari terbesar ke terkecil
    • select * from transactions where customer is not null order by store, total_price desc;
Code
Diff
  • select * from transactions order by total_price desc;
    • -- Code Here
    • select * from transactions order by total_price desc;
Code
Diff
  • select * from transactions order by total_price 
    • -- Code Here
    • select * from transactions order by total_price
Code
Diff
  • select * from transactions where customer LIKE 'S%r'
    • -- Code Here
    • select * from transactions where customer LIKE 'S%r'