Skip to content

Instantly share code, notes, and snippets.

@prashant4224
Last active May 31, 2020 15:34
Show Gist options
  • Save prashant4224/9ddad12a5e27cb914d186e9cd193207f to your computer and use it in GitHub Desktop.
Save prashant4224/9ddad12a5e27cb914d186e9cd193207f to your computer and use it in GitHub Desktop.
CREATE PROCEDURE `GetByCity`(IN cityName varchar(255))
BEGIN
select * from user where city=cityName;
END
//call test_db.GetByCity('Pune');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment