Jump to content

query in My SQL & PHP


Nat

Recommended Posts

Hi,

 

Let's say I have a database created in MySQL containing 2 different tables. For instance table 1 is called people and table 2 is called interests.

 

I know how to retrieve a query when there's one table from a database, for instance:

 

// Define a query that retrieves the names

$query = "SELECT first_name, last_name FROM people";

 

 

 

However, what do I do when I want to get the info. from 2 different tables. I'm doing what's below but this isn't working. Any advice or direction would be greatly appreciated.

 

 

// Run the query and store the result

$result = mysqli_query($link, $query);

 

// Define a query that retrieves the names and interest

$query = "SELECT first_name, last_name FROM people, AND sport, hobby  FROM interests";

 

// Run the query and store the result

$result = mysqli_query($link, $query);

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.