I was wondering if there was anyway to get multiple queries from the database when doing a SELECT * FROM. Example: getting all the rows with either a 1 or a 0 at the same time...
Piece of cake: 😉
SELECT * FROM cake WHERE piece=1 OR piece=0;