Skip to content
Snippets Groups Projects
Commit ca31b2ea authored by RomanSteinberg's avatar RomanSteinberg
Browse files

fix declare checker variable

parent c2d1bc31
Branches
Tags
No related merge requests found
...@@ -4030,6 +4030,7 @@ CREATE FUNCTION `GetUserFullNameByAccountID` ( `AccountID` INT(11) ...@@ -4030,6 +4030,7 @@ CREATE FUNCTION `GetUserFullNameByAccountID` ( `AccountID` INT(11)
NO SQL NO SQL
BEGIN BEGIN
DECLARE UserFullName VARCHAR(255); DECLARE UserFullName VARCHAR(255);
DECLARE checker INT;
SET checker = -1; SET checker = -1;
SELECT students.ID As ID, CONCAT(students.LastName, students.FirstName, students.SecondName) As UserName SELECT students.ID As ID, CONCAT(students.LastName, students.FirstName, students.SecondName) As UserName
......
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