MySQL Split String into RowsDecember 26, 2015December 17, 2022Suppose we have a table named TEAMS like this: mysql> select * from teams; +----+-------------------+ | id | name … Read More »MySQL Split String into Rows
Minus in MySQLMay 20, 2015December 12, 2022In MySQL, there're UNION, UNION ALL set operators like Oracle, but no MINUS. You have to work around it by doing LEFT JOIN tricks. In… Read More »Minus in MySQL