Fjala kyēe ORDER BY nė SQL
Fjala kyēe ORDER BY nė SQL pėrdoret pėr tė radhitur tė dhėnat nė njė "Result-set" qė mund tė pėrmbajė njė ose mė shumė rreshta.
ORDER BY i radhit rezultatet nga mė i vogli tek mė i madhi si i parazgjedhur. Nėse dėshironi ti radhisni rezultatet nga mė i madhi tek mė i vogli atėherė pėrdorni fjalėn kyēe "DESC".
Sintaksi ORDER BY nė SQL
SELECT column_name, column_name FROM table_name ORDER BY column_name ASC|DESC, column_name ASC|DESC;
Shembull i bazės sė tė dhėnave
Mė poshtė ėshtė njė shembull nga tabela "Customers":
Shembull i ORDER BY
Shembulli mė poshtė zgjedh tė gjithė klientet nga tabela "Customers", e radhitur me kolonėn "Country".
SELECT * FROM Customers ORDER BY Country;
Shembull i ORDER BY DESC
Shembulli i mėposhtėm zgjedh tė gjithė klientėt nga tabela "Customers", e radhitur me DESCENDING nė kolonėn "Country" (pra nga Z - A)
SELECT * FROM Customers ORDER BY Country DESC;
Shembulli ORDER BY, radhit me shumė kolona
Shembulli mė poshtė zgjedh tė gjithė klientėt nga tabela e "Customers", radhitur me kolonat "Country" dhe "CustomerName".
SELECT * FROM Customers ORDER BY Country, CustomerName;