Learn MySQL multi-table operations and backup processing _ MySQL

Source: Internet
Author: User
Multi-table operations in a database may have multiple tables that are associated with each other. We will continue to use the previous example. The preceding table contains basic information about an employee, such as name, gender, date of birth, and place of birth. Create another table to describe the articles published by employees, including the author's name, article title, and publication date. 1, Multi-table operations
Multiple tables may exist in a database, which are associated with each other. We will continue to use the previous example. The preceding table contains basic information about an employee, such as name, gender, date of birth, and place of birth. Create another table to describe the articles published by employees, including the author's name, article title, and publication date.
  
1. view the content of mytable in the first table:
  
Mysql> select * from mytable;
+ ---------- + ------ + ------------ + ----------- +
| Name | sex | birth | birthaddr |
+ ---------- + ------ + ------------ + ----------- +
| Abccs | f | 1977-07-07 | china |
| Mary | f | 1978-12-12 | usa |
| Tom | m | 1970-09-02 | usa |
+ ---------- + ------ + ------------ + ----------- +
  
   2. create the second table title (including the author, article title, and publication date ):
  
Mysql> create table title (writer varchar (20) not null,
-> Title varchar (40) not null,
-> Senddate date );
Add a record to the table. the contents of the last table are as follows:
  
  

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 | maid |
+ -------- + ------- + ------------ +
5 rows in set (0.00sec)
  
   3. multi-table query
Now we have two tables: mytable and title. Using these two tables, we can perform combined queries:
For example, we want to query the name, gender, and article of the author abccs:
  
Mysql> SELECT name, sex, title FROM mytable, title
-> WHERE name = writer AND name = 'abccs ′;
+ ------- + ------ + ------- +
| Name | sex | title |
+ ------- + ------ + ------- +
| Abccs | f | a1 |
| Abccs | f | a2 |
+ ------- + ------ + ------- +
  
In the above example, because the author's name, gender, and Article record are in two different tables, you must use a combination for query. You must specify how records in a table match those in other tables.
  
Note: If the writer column in the title of the second table is named name (the same as the name column in mytable) rather than writer, you must use mytable. name and title. name indicates the difference.
  
Another example is used to query the Author, place of birth, and date of birth of article a2:
  
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 |
+ ------- + -------- + ----------- + ------------ +
  
   Modification and backup, batch processing
Sometimes we need to modify and delete database tables and databases, which can be implemented as follows:
  
1. add a column:
For example, in the mytable table in the previous example, adding a column to indicate whether the table is single or not:
Mysql> alter table mytable add column single char (1 );
  
2. modify records
Modify the single record of abccs to "y ":
Mysql> update mytable set single = 'y' where name = 'abccs '; now let's see what happened:
  
Mysql> select * from mytable;
+ ---------- + ------ + ------------ + ----------- + -------- +
| Name | sex | 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. add Records
We have already discussed how to add a record to repeat this record for ease of viewing:
  
Mysql> insert into mytable
-> Values ('ABC', 'F', '1966-08-17', 'China', 'n ′);
Query OK, 1 row affected (0.05 sec)
  
Check it out:
  
Mysql> select * from mytable;
+ ---------- + ------ + ------------ + ----------- + -------- +
| Name | sex | 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. delete records
Run the following command to delete a record in the table: mysql> delete from mytable where name = 'abc ′;
DELETE: DELETE a record from the table that meets the conditions given by where.
The result is displayed as follows:
  
Mysql> select * from mytable;
+ ---------- + ------ + ------------ + ----------- + -------- +
| Name | sex | 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. delete a table:
Mysql> drop table ***** (name of table 1), and *** name of table 2;
You can delete one or more tables with caution.
  
6. delete a database:
Mysql> drop database name;
Use it with caution.
  
7. database backup:
Return to DOS:
Mysql> quit
D: mysqlbin
  
Use the following command to back up the database abccs:
Mysqldump -- opt abccs> abccs. dbb
Abccs. dbb is the backup file of your database abccs.
  
8. use MySQL in batches:
  
First, create a batch file mytest. SQL with the following content:
  
Use abccs;
Select * from mytable;
Select name, sex from mytable where name = 'abccs ′;
  
Run the following command in DOS: d: mysqlbin mysql <mytest. SQL
  
The execution result is displayed on the screen.
  
If you want to view the results, but there are many output results, you can use the following command: mysql <mytest. SQL | more
  
We can also output the results to a file: mysql <mytest. SQL> mytest. out
Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.