Hello,
I'm a little confused. I'm using MySQL 5+ with InnoDB as my engine. If I run the following statement and the table 'user_temp' is empty I always get an empty result set no matter what's in the 'users' table.
SELECT * FROM `users`, `user_temp`
If I put something in 'user_temp' I'll get back all the results. Is this suppose to work like this?
Thanks.