萬盛學電腦網

 萬盛學電腦網 >> 數據庫 >> mysql教程 >> MySql多表聯結查詢與多表關聯數據同時刪除

MySql多表聯結查詢與多表關聯數據同時刪除

在數據庫中所有數據庫都是支持多表聯合查詢了,下面我來介紹利用left join在mysql中實現多表聯合查詢,有需要 的朋友可參考

left join語法

 代碼如下 復制代碼

table_references:
    table_reference [, table_reference] …
 table_reference:
    table_factor
  | join_table
 table_factor:
    tbl_name [[AS] alias]
        [{USE|IGNORE|FORCE} INDEX (key_list)]
  | ( table_references )
  | { OJ table_reference LEFT OUTER JOIN table_reference
        ON conditional_expr }


例:

 代碼如下 復制代碼

mysql> CREATE TABLE `product` (
  `id` int(10) unsigned NOT NULL auto_increment,
  `amount` int(10) unsigned default NULL,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=latin1
 
mysql> CREATE TABLE `product_details` (
  `id` int(10) unsigned NOT NULL,
  `weight` int(10) unsigned default NULL,
  `exist` int(10) unsigned default NULL,
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1
 
mysql> INSERT INTO product (id,amount)
       VALUES (1,100),(2,200),(3,300),(4,400);
Query OK, 4 rows affected (0.00 sec)
Records: 4  Duplicates: 0  Warnings: 0
 
mysql> INSERT INTO product_details (id,weight,exist)
       VALUES (2,22,0),(4,44,1),(5,55,0),(6,66,1);
Query OK, 4 rows affected (0.00 sec)
Records: 4  Duplicates: 0  Warnings: 0


查詢

 代碼如下 復制代碼

mysql> SELECT * FROM product LEFT JOIN product_details
       ON (product.id = product_details.id)
       AND product.amount=200;
+----+--------+------+--------+-------+
| id | amount | id   | weight | exist |
+----+--------+------+--------+-------+
|  1 |    100 | NULL |   NULL |  NULL |
|  2 |    200 |    2 |     22 |     0 |
|  3 |    300 | NULL |   NULL |  NULL |
|  4 |    400 | NULL |   NULL |  NULL |
+----+--------+------+--------+-------+
4 rows in set (0.01 sec)

超級簡單吧,那麼有朋友問我怎麼在MySQL中實現多表關聯數據同時刪除

category中的id(欄目編號)字段作為該表的主鍵(primary key).唯一標識了一個欄目的信息。
news 中的id字段作為該表的主鍵(primary key).唯一標識了一個欄目的信息。


category_id(欄目編號)字段與category表的id字段相關聯。

1.SQL刪除語句

 代碼如下 復制代碼

delete category,news from category left join news on category.id = news.category_id

copyright © 萬盛學電腦網 all rights reserved