2
votes
How do you JOIN two MySQL tables where the data is NOT in the other table?
SELECT PETS.NAME
FROM PETS
LEFT OUTER JOIN LOST_PETS
ON PETS.PET_ID = LOST_PETS.PET_ID
WHERE LOST_PETS.PET_ID IS NULL;
…
0
votes
MySQL licensing and GPL
First, I am not a lawyer. Talk with one before taking any advice here.
Beyond that, if you do not distribute your web app, you likely do not need to release your changes. You can still make …
