Skip to content
Snippets Groups Projects
Commit a3aba0cc authored by PavelBegunkov's avatar PavelBegunkov
Browse files

GetGrades

parent c2e300d6
Branches
Tags
No related merge requests found
......@@ -439,6 +439,19 @@ BEGIN
END //
DROP PROCEDURE IF EXISTS GetGrades//
CREATE PROCEDURE `GetGrades` ( )
NO SQL
BEGIN
SELECT grades.ID AS 'GradeID',
grades.Grade AS 'Grade',
grades.Degree AS 'Degree'
FROM `grades`
ORDER BY grades.ID;
END //
-- -------------------------------------------------------------------------------------------
-- ====== Работа с аккаунтами ======
-- -------------------------------------------------------------------------------------------
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment