MySQL Learning notes

Source: Internet
Author: User

MySQL Learning notes:

Take the school database as an example:

Create DATABASE school Character set UTF8 {character Set GBK indicates that the database uses a character set of GBK, and Utf8,unicode, etc.}

Drop Database School {delete}

Take the student table as an example

To create a table:

CREATE TABLE Student
(
ID int unsigned NOT NULL Auto_increment primary key, {int unsigned unsigned, not NULL is not empty, Auto_increment automatically increases index value, primary key Set as PRIMARY key}
Nmme Char (TEN) NOT null default '-') {default '-' is empty when this value is filled}

Delete all data in the table: delete from student

Delete tables: drop table Student

Add: Insert course values (NULL, ' swim ') or insert Course (X1,X2) (y1,y2) {You can insert only the value of the corresponding column}

Delete: Delete from course where id=3

Change: Update course set cname= ' badminton ' where id=4

Check:

MySQL Learning notes

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.