You are viewing a single comment's thread. Return to all comments →
MySQL-
SET @row = 0;
SELECT REPEAT('* ', @row := @row + 1) AS pattern FROM information_schema.tables LIMIT 20;
Seems like cookies are disabled on this browser, please enable them to open this website
Draw The Triangle 2
You are viewing a single comment's thread. Return to all comments →
MySQL-
SET @row = 0;
SELECT REPEAT('* ', @row := @row + 1) AS pattern FROM information_schema.tables LIMIT 20;