Created
May 31, 2020 15:24
-
-
Save prashant4224/a0e8d28c1b1c89c371aff06fb610d745 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE DEFINER=`root`@`localhost` PROCEDURE `GetTotalUser`() | |
BEGIN | |
DECLARE totalUser INT DEFAULT 0; | |
SELECT COUNT(*) INTO totalUser FROM USER; | |
SELECT totalUser; | |
END |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment