Collections:
Query Multiple Tables Jointly in MySQL
How To Query Multiple Tables Jointly in MySQL?
✍: FYIcenter.com
If you want to query information stored in multiple tables, you can use the SELECT statement with a WHERE condition to make an inner join. Assuming that you have 3 tables in a forum system: "users" for user profile, "forums" for forums information, and "posts" for postings, you can query all postings from a single user with a script as shown below:
<?php
include "mysql_connection.php";
$userID = 101;
$sql = "SELECT posts.subject, posts.time, users.name,
. " forums.title"
. " FROM posts, users, forums"
. " WHERE posts.userID = ".$userID
. " AND posts.userID = users.id"
. " AND posts.forumID = forums.id";
$rs = mysql_query($sql, $con);
while ($row = mysql_fetch_assoc($rs)) {
print($row['subject'].", ".$row['time'].", "
.$row['name'].", ".$row['title']."\n");
}
mysql_free_result($rs);
mysql_close($con);
?>
⇒ Define the ID Column as Auto-Incremented in MySQL
⇐ Build WHERE Criteria with Web Form Data in MySQL
2017-06-23, 3663🔥, 0💬
Popular Posts:
What Happens If the UPDATE Subquery Returns Multiple Rows in MySQL? If a subquery is used in a UPDAT...
What are single-byte character string data types supported in SQL Server Transact-SQL? Single-byte c...
Can Date and Time Values Be Converted into Integers in SQL Server Transact-SQL? Can date and time va...
How To Look at the Current SQL*Plus System Settings in Oracle? If you want to see the current values...
How To Break Query Output into Pages in MySQL? If you have a query that returns hundreds of rows, an...