Skip to content

Instantly share code, notes, and snippets.

@thinkjson
Created September 28, 2011 15:38
Show Gist options
  • Select an option

  • Save thinkjson/1248259 to your computer and use it in GitHub Desktop.

Select an option

Save thinkjson/1248259 to your computer and use it in GitHub Desktop.
Generate sample data
DELIMITER $$
CREATE
PROCEDURE junk()
BEGIN
LOOP
INSERT INTO repo_user VALUES(NULL, 'Mark', 'Cahill', ROUND(RAND()*999999), ROUND(2+RAND()*2,2));
END LOOP;
END$$
DELIMITER ;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment