mysql多表分析 MySQL 多表查詢實現分析

2021-10-17 17:19:21 字數 3061 閱讀 8320

1、檢視第乙個表 mytable 的內容:

mysql> select * from mytable;

| name | *** | birth | birthaddr |

| abccs |f | 1977-07-07 | china |

| mary |f | 1978-12-12 | usa |

| tom |m | 1970-09-02 | usa |

2、建立第二個表 title (包括作者、文章標題、發表日期):

mysql> create table title(writer varchar(20) not null,

-> title varchar(40) not null,

-> senddate date);

向該表中填加記錄,最後表的內容如下:

bordercolorlight = "black" bordercolordark = "#ffffff" align="center">

mysql> select * from title;
| writer | title | senddate |

| abccs | a1 | 2000-01-23 |

| mary | b1 | 1998-03-21 |

| abccs | a2 | 2000-12-04 |

| tom | c1 | 1992-05-16 |

| tom | c2 | 1999-12-12 |

5 rows in set (0.00sec)

3、多表查詢

現在我們有了兩個表: mytable 和 title。利用這兩個表我們可以進行組合查詢:

上面例子中,由於作者姓名、性別、文章記錄在兩個不同表內,因此必須使用組合來進行查詢。必須要指定乙個表中的記錄如何與其它表中的記錄進行匹配。

注意:如果第二個表 title 中的 writer 列也取名為 name(與mytable表中的name列相同)而不是 write r時,就必須用 mytable.name 和 title.name 表示,以示區別。

mysql> select title,writer,birthaddr,birth from mytable,title

-> where mytable.name=title.writer and title=′a2′;

| title | writer | birthaddr | birth |

| a2 | abccs | china | 1977-07-07 |

修改和備份、批處理

有時我們要對資料庫表和資料庫進行修改和刪除,可以用如下方法實現:

1、增加一列:

如在前面例子中的 mytable 表中增加一列表示是否單身 single:

mysql> alter table mytable add column single char(1);

2、修改記錄

將 abccs 的 single 記錄修改為「y」:

mysql> update mytable set single=′y′ where name=′abccs′; 現在來看看發生了什麼:

mysql> select * from mytable;

| name | *** | birth | birthaddr | single |

| abccs |f | 1977-07-07 | china | y |

| mary |f | 1978-12-12 | usa | null |

| tom |m | 1970-09-02 | usa | null |

3、增加記錄

前面已經講過如何增加一條記錄,為便於檢視,重複與此:

mysql> insert into mytable

-> values (′abc′,′f′,′1966-08-17′,′china′,′n′);

query ok, 1 row affected (0.05 sec)

檢視一下:

mysql> select * from mytable;

| name | *** | birth | birthaddr | single |

| abccs |f | 1977-07-07 | china | y |

| mary |f | 1978-12-12 | usa | null |

| tom |m | 1970-09-02 | usa | null |

| abc |f | 1966-08-17 | china | n |

4、刪除記錄

用如下命令刪除表中的一條記錄:mysql> delete from mytable where name=′abc′;

delete 從表中刪除滿足由 where 給出的條件的一條記錄。再顯示一下結果:

mysql> select * from mytable;

| name | *** | birth | birthaddr | single |

| abccs |f | 1977-07-07 | china | y |

| mary |f | 1978-12-12 | usa | null |

| tom |m | 1970-09-02 | usa | null |

5、刪除表:

mysql> drop table ****(表 1 的名字),*** 表 2 的名字; 可以刪除乙個或多個表,小心使用。

6、資料庫的刪除:

mysql> drop database 資料庫名; 小心使用。

7、資料庫的備份:

退回到 dos:

mysql> quit

d:\mysqlbin

使用如下命令對資料庫 abccs 進行備份:

mysqldump --opt abccs>abccs.dbb

abccs.dbb 就是你的資料庫 abccs 的備份檔案。

8、用批處理方式使用 mysql:

首先建立乙個批處理檔案 mytest.sql,內容如下:

use abccs;

select * from mytable;

select name,*** from mytable where name=′abccs′;

mysql多表 MySQL 多表查詢

多表查詢 select listname from tablename1,tablename2 笛卡爾積 多表查詢中,如果沒有連線條件,則會產生笛卡爾積 數學中的定義 假設集合a 集合b 則兩個集合的笛卡爾積為 實際執行環境下,應避免使用笛卡爾積 解決方案 在where加入有效的連線條件 等值連線 ...

多表左連線 多排序mysql

eaa schedule user是記錄使用者是否已讀的 中間 表,base v user group department是使用者 檢視 表,其中readtime為null視為未讀,readtime不為null視為已讀,base v user group department中userorder是...

mysql多表查詢注意事項 MySQL的多表查詢

一 表的加法 例如 將course和course1兩張表合併 兩張表的資料分別如圖所示 course表的資料course1表的資料 用union合併兩張表 course course1 去重 用union all合併兩張表course course1 不去重 注意 字段順序應保持一致。二,多表聯結 ...