http://www.mysqltutorial.org/create-sql-updatable-views.aspx
This article above states the following:
SELECT statement must not reference to more than one table. It means it must not contain more than one table in FROM clause, other tables in JOIN statement, or UNION with other tables.
Is this true and why? How would you query two related tables like it was one (through a view), without using joins in every query string?