Jump to content

Trying to join 2 tables in mysql-Help!


canadian_angel

Recommended Posts

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.