😕
Ok a little much as I am as beginner as it gets in SQL. I know the bare basics, but if I read that right, I would have
INSERT INTO perms(anValue) VALUES ('a'),('b'),('c'),('d'),('e'),('f'),('g'),('h'),('i'),('j'),('k'),('l'),('m'),('n'),('o'),('p'),('q'),('r'),('s'),('t'),('u'),('v'),('w'),('x'),('y'),('z'),('A'),('B'),('C'),('D'),('E'),('F'),('G'),('H'),('I'),('J'),('K'),('L'),('M'),('N'),('O'),('P'),('Q'),('R'),('S'),('T'),('U'),('V'),('W'),('X'),('Y'),('Z'),('1'),('2'),('3'),('4'),('5'),('6'),('7'),('8'),('9'),('0'),('!'),('@'),('#'),('$'),('%'),('^'),('&'),('*'),('?')
So I do that and it turns out fine in the table perms
Then I created the second table perms2 and executed this
SELECT CONCAT(t1.anValue, t2.anValue) as perm FROM perms AS t1, perms2 AS t2 ORDER BY perm LIMIT 25000
and receive
MySQL returned an empty result set (i.e. zero rows). (Query took 0.0003 sec)
Did I replace something wrong, or is it wrong in the first place.
btw I also need another row for hashes, and i know no way of doing this with sql. Or is there a way of doing it.