Is it equivalent oracle cursor parameter feature in mysql? -
is equivalent oracle cursor parameter feature in mysql ?
for illustration :-
cursor cursorname(paramter_name datatype) select * table_name;
you can seek following:
cursor select_curs select * tbl id = @id; set @id = 1; open .. fetch .. close ..
mysql cursor
No comments:
Post a Comment