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
https://forums.phpfreaks.com/topic/50123-query-in-my-sql-php/
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.