简体   繁体   English

在多个表中检索mysql数据

[英]mysql data retrieving in multiple tables

I have table named category, it contains 2 columns (id primary key , item) 我有一个名为category的表,它包含2列(id主键,项目)

with the name of item's i have another tables 与项目的名称,我有另一个表

i get the data in category table using foreach loop, 我使用foreach循环获取类别表中的数据,

in that loop for every item there is a table. 在该循环中,每个项目都有一个表格。 I trying to retrieve those data but i got a single table data only. 我试图检索这些数据,但仅得到一个表数据。

here is my code: 这是我的代码:

$con=mysql_connect('localhost','root','');
$db="testing";
$a=mysql_select_db($db,$con);
$c=mysql_query("select * from category");
$d=mysql_fetch_array($c);
mysql_data_seek($c,0);
foreach($d as $x)
{ 
    echo $x['item']." ";
    $e=mysql_query("select * from ".$x['item']);

        if($e)
        {
            $f=mysql_fetch_array(mysql_query("select * from ".$x['item']));
            mysql_data_seek($e,0);
            foreach($f as $y)
            { 
                echo $y['price']." ".$y['Quantity'];
            }
        }
        else continue;//break;
} 

I have tried my best to understand what you want from your post. 我已尽力了解您的帖子内容。 Also, mysql has been deprecated as of PHP 5.5.0. 另外,从PHP 5.5.0开始不推荐使用mysql。 You should use mysqli instead. 您应该改用mysqli。 My answer is done with both mysqli and mysql. 我的答案是同时使用mysqli和mysql完成的。

Result: 结果:

Item - car
Price: 29000.00 Quantity: 5
Price: 18000.00 Quantity: 6
Item - house
Price: 50000.00 Quantity: 4

Source Code - Using mysqli: 源代码-使用mysqli:

$con=mysqli_connect('localhost','root','');
$db="testing";
$a=mysqli_select_db($con, $db);
$c=mysqli_query($con,"select * from category");
while($x = mysqli_fetch_array($c)){
    echo "Item - ".$x['item']."<br/>";
        $e=mysqli_query($con,"select * from ".$x['item']);
        if($e)
        {
            while($y = mysqli_fetch_array($e)){
                echo "Price: ".$y['price']." Quantity: ".$y['Quantity']."<br/>";
            }       
        }
        else continue;//break;  
}

Source Code - Using mysql: 源代码-使用mysql:

$con=mysql_connect('localhost','root','');
$db="testing";
$a=mysql_select_db($db, $con);
$c=mysql_query("select * from category");
while($x = mysql_fetch_array($c)){

    echo "Item - ".$x['item']."<br/>";
        $e=mysql_query("select * from ".$x['item']);
        if($e)
        {
            while($y = mysql_fetch_array($e)){
                echo "Price: ".$y['price']." Quantity: ".$y['Quantity']."<br/>";
            }       
        }
        else continue;//break;  
}

SQL Dump: SQL转储:

SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";


/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;

--
-- Database: `testing`
--

-- --------------------------------------------------------

--
-- Table structure for table `car`
--

CREATE TABLE IF NOT EXISTS `car` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `price` decimal(10,2) NOT NULL,
  `Quantity` int(11) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB  DEFAULT CHARSET=latin1 AUTO_INCREMENT=7 ;

--
-- Dumping data for table `car`
--

INSERT INTO `car` (`id`, `price`, `Quantity`) VALUES
(5, 29000.00, 5),
(6, 18000.00, 6);

-- --------------------------------------------------------

--
-- Table structure for table `category`
--

CREATE TABLE IF NOT EXISTS `category` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `item` varchar(255) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB  DEFAULT CHARSET=latin1 AUTO_INCREMENT=3 ;

--
-- Dumping data for table `category`
--

INSERT INTO `category` (`id`, `item`) VALUES
(1, 'car'),
(2, 'house');

-- --------------------------------------------------------

--
-- Table structure for table `house`
--

CREATE TABLE IF NOT EXISTS `house` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `price` decimal(10,2) NOT NULL,
  `Quantity` int(11) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB  DEFAULT CHARSET=latin1 AUTO_INCREMENT=3 ;

--
-- Dumping data for table `house`
--

INSERT INTO `house` (`id`, `price`, `Quantity`) VALUES
(2, 50000.00, 4);

/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

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