Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialkrishna sapkal
Courses Plus Student 62 Pointswhy mysql workbench is showing error in the while and end while statements.
CREATE FUNCTION add_student (start int,end int,dept varchar(5),year int,sub varchar(200),teacher varchar(200))
returns integer
BEGIN
WHILE start <= end1;
insert into student (rollno,dept,year,sub,teacher) values(start,dept,year,sub,techer);
set start = start + 1;
END WHILE;
END;
1 Answer
Steven Parker
231,261 PointsI don't think you want a semicolon (;) at the end of the WHILE
line.
And you probably will want to add a DO
after it.