mysql數據庫—映射關係和鏈接查詢(內鏈接、外鏈接、自鏈接)

一、三種映射關係 /* 1:1 任選一個表看成主鍵表,另外一個表看成外鍵表 而且外鍵列必須惟一 */ drop table if exists husband; drop table if exists wife; create table wife( id int auto_increment primary key, name varchar(100) ); create table hu
相關文章
相關標籤/搜索