Created
June 5, 2016 11:53
-
-
Save alibitek/6cd0b616204fa2db69b46d3e32be776a to your computer and use it in GitHub Desktop.
MySQL print triangle
This file contains hidden or 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
select repeat('* ', @n := @n + 1) from information_schema.tables, (select @n := 0) t limit 20 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment