Mysql Procedure not working in mysql -
i have tried following procedure both ways.but through error. here need thecount of particular question categories.table 'questions'
create procedure questioncountjava() begin select count(*) javaquestioncount questions category='java' end
***************other tried way********************
delimiter // create procedure questioncountjava() begin select count(*) javaquestioncount questions category='java' end // delimiter;
Comments
Post a Comment