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          | fredl@home.ca    |

|  2 | john adams      | johna@hotmail.com |

|  3 | tim horton      | timmy@home.ca    |

|  4 | colonel sanders | colonels@home.ca  |

+----+-----------------+-------------------+

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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.