canadian_angel Posted July 10, 2010 Share Posted July 10, 2010 I am trying to join two tables and havent been very successful, can anyone please help! The two tables are joke and author; I need to get the authors name and email address in the joke table! The database is ijdb; mysql> USE ijdb; Database changed mysql> SELECT LEFT(joketext, 20), authorid FROM joke; +----------------------+----------+ | LEFT(joketext, 20) | authorid | +----------------------+----------+ | Why did the chicken | 0 | | What is a cows favor | 0 | +----------------------+----------+ 2 rows in set (0.02 sec) mysql> SELECT * FROM author; +----+-----------------+-------------------+ | id | name | email | +----+-----------------+-------------------+ | 1 | fredl | [email protected] | | 2 | john adams | [email protected] | | 3 | tim horton | [email protected] | | 4 | colonel sanders | [email protected] | +----+-----------------+-------------------+ 4 rows in set (0.00 sec) mysql> SELECT LEFT(joketext, 20), name, email -> FROM joke, author WHERE authorid = author.id; Empty set (0.00 sec) Link to comment https://forums.phpfreaks.com/topic/207356-trying-to-join-2-tables-in-mysql-help/ Share on other sites More sharing options...
bh Posted July 10, 2010 Share Posted July 10, 2010 Hi, ids in joke table: 0, 0 ids in author table : 1, 2, 3, 4 theres no matches. Link to comment https://forums.phpfreaks.com/topic/207356-trying-to-join-2-tables-in-mysql-help/#findComment-1084164 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.