简体   繁体   中英

Mysql query returns wrong rows

I have a simple mysql database where user has its own events table and invited events table.

User-->>Own events (user_id is foreign key )
User and Own events-->>Invited Events(user_id is foreign key, event id is foreign key)

I want to get OWN EVENT details from Invited Events where user_id is equal to some number

Example:

在此处输入图片说明

I try:

$user_id = $_POST["user_id"];
$stmt = $mysqli->query("SELECT A1.event_id,A1.root_folder,A1.event_name,A1.date,A1.location,A2.user_id FROM OWN_EVENTS A1, INVITED_EVENTS A2 WHERE A2.user_id=$user_id");

$rows = array();
while($r = mysqli_fetch_assoc($stmt)) {
    $rows[]=$r;
}

This supposed give me (one row) event details of event_id=3 where user_id=58 but this returns all the rows in the OWN_EVENTS table.

What am I doing wrong ?

Currently, you query returns cartesian product.

You need to tell the optimizer how the two tables are connected with each other.

SELECT  A1.event_id,A1.root_folder,A1.event_name,A1.date,A1.location,A2.user_id 
FROM    OWN_EVENTS A1 
        INNER JOIN INVITED_EVENTS A2 
           ON A1.columnName = A2.columnsName  // columns that defines their relationship
WHERE   A2.user_id=$user_id

To further gain more knowledge about joins, kindly visit the link below:

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM