php - How to create stored procedures through migrations in laravel 5.3? -
i have created procedure through migration not throwing result when passing string in query. here code
create procedure my_procedure( in _searchstr varchar(100) ) begin select * user user.name=_searchstr; end
if pass hardcode value in place of _searchstr showing result?
Comments
Post a Comment