如果此表中的值存在于其他表上,则连接表并从表中获取值

时间:2018-04-10 14:52:02

标签: php mysql

我有2张桌子。我需要做这个工作,因为我开始为我的游戏开放免费服务。我希望人们可以提供帮助。

表1"在线"

      |ID |
       ---
      | 1 |
      | 2 |
      | 3 |
      | 12|
      | 55|

表2"用户"

UserID|       IP
------------------------
  1   | 123.123.123.123
  2   | 123.123.123.123
  3   | 123.123.123.123
  12   | 123.123.123.123
  55   | 22.12.122.22

首先。我从"在线"获得了价值(ID)。表。获得身份证。

我有一个用户的ID在线。

下一步。我使用了我从#34;在线"获得的价值(ID)。用于从" User"中选择IP地址的表表

当我从单个用户在线获取IP时。我从"用户"获得UserID具有相同" IPAddress"的表。它将显示许多具有相同IP地址的用户。

我的问题。我怎样才能在线#34;在线"在线查询(我的奖金查询)只有3个身份证。表如果有这么多用户拥有相同的IP和在线。

MYSQL版本不支持select top。所以我不能做这个工作。请帮忙。

谢谢大家!



<?php

session_start();
header('Content-Type: text/html; charset=utf-8');
include ("config.php");
error_reporting(0);
$servername = "localhost";
$username = "root";
$password = "root";
$dbname = "data";
$account_Name = $_SESSION['userlogin'];


// Create connection
$conn = mysqli_connect($servername, $username, $password, $dbname);
// Check connection
if (!$conn) {
    die("Connection failed: " . mysqli_connect_error());
}


// get id online

$id_online = $conn->query("select ID from online");

$online = "";
while($row = $id_online->fetch_assoc())
{
	// list account online
	
	$online = $row["ID"];
	echo "- ID  online: $online";
	echo "</br>";
	$id_basetab = $conn->query("select UserID, IP from User where UserID='$online'");
	$ip = "";
	//show same ip list
	while($list = $id_basetab->fetch_assoc())
	{
		$ip = $list["LastIP"];
		echo "<hr>- IP: $ip</br>";
		$queryIP = $conn->query("SELECT UserID, IP FROM User where IP=$ip");
		echo "<hr>";
		//echo " acc Clone: </br>";
		
		while($row1 = $queryIP->fetch_assoc())
		{
				 //echo "id: " . $row1["AccountID"]. " - Name: " . $row1["name"]. " - IP: " . $row1["LastIP"]. "<br>";
		}
		
	
		
	}
	
	// join table
	echo "<hr>";
	$queryshow = $conn->query("select  UserID, IP from online FULL JOIN User ON UserID=ID where UserID=$online ");
		while($result = $queryshow->fetch_assoc())
		{
       // is my $queryshow correct? I want to get value ID is exist or not if exist UserID on User table.
       // How can I create a query for only 3 users online if they have multiple account online.
		  //I will make my custom query here.
		
		}
}


?>
&#13;
&#13;
&#13;

1 个答案:

答案 0 :(得分:1)

此查询应该一次获取您需要的数据。 现在,您可以在html和php中重构一次并回显结果 这将减少许多代码。 我使用了内连接,同时获得了两个表格的数据。 如果你需要一个where子句,只需将它放在内部连接和此代码的order by部分之间。 LIMIT 3显示数据集中的前3个结果

SELECT User.UserID, User.IP, online.ID 
FROM User 
INNER JOIN online ON User.UserID = online.ID  
ORDER BY User.IP DESC limit 3