You are viewing a single comment's thread. Return to all comments →
my sql
delimiter $$ create procedure loops() begin declare counter int default 20; while counter >0 do select repeat('* ',counter); set counter = counter -1 ; end while ; end $$ delimiter ; call loops();
Seems like cookies are disabled on this browser, please enable them to open this website
Draw The Triangle 1
You are viewing a single comment's thread. Return to all comments →