MySQL Learning (1)

Source: Internet
Author: User

1. Start MySQL service: net start MySQL

Turn off MySQL service: net stop MySQL

2, Login mysql:mysql-uroot-p (Enter, password +enter)

Mysql-h Server IP address (default localhost)-p port number (default 3306)-u user name-p password

3, display database: show databases;

4. Creating database: Create database name;

5. Using/Switching database: Use database name;

6, delete the database: drop database name;

7. Data type:

Shaping: tinyint, smallint, mediumint, int, bigint

Character type: char (m), varchar (m)

Float type: float (m,n), double (m,n)

(Other slightly)

8, the constraints of the table:

Primary key: Primary key

Non-empty: NOT NULL

Unique: Unique

Self-growth: auto_increment

FOREIGN key: FOREIGN key

9. Display all tables in the database: show tables;

10. Create a table:

CREATE TABLE table name (Field 1 field type, field 2 field type, ...);
such as: CREATE TABLE student (ID int auto_increment PRIMARY KEY, Tname varchar (), age tinyint unsigned);

  

 

MySQL Learning (1)

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.