logo

eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee

Unnamed repository; edit this file 'description' to name the repository.
commit: 54dcc637c54f993f3f89df3fe97f36ea0934f21c
parent f3bb29739dce70badebf121c322c1374292c4c7a
Author: LinuxMercedes <LinuxMercedes@gmail.com>
Date:   Tue, 11 Dec 2018 14:48:28 -0600

Merge pull request #464 from Yashwanth-T/patch-2

Create e.sql

Diffstat:

Ae.sql13+++++++++++++
1 file changed, 13 insertions(+), 0 deletions(-)

diff --git a/e.sql b/e.sql @@ -0,0 +1,13 @@ +CREATE DATABASE e; +USE e; + +DELIMITER | +CREATE PROCEDURE e() +BEGIN + WHILE 'e' = 'e' DO + SELECT REPEAT("e",RAND()*100) AS e; + END WHILE; +END| +DELIMITER ; + +CALL e();