how to create procedure in mysql for selecting record? -


how write procedure in mysql select record particular table in , out parameter?

delimiter //  create procedure sample (in id int, out mycount int) begin     select count(*) mycount          yourtable          yourkey = id; end// 

Comments

Popular posts from this blog

jQuery clickable div with working mailto link inside -

java - Getting corefrences with Standard corenlp package -

WPF: binding viewmodel property of type DateTime to Calendar inside ItemsControl -