MySQL Common SQL statements

Source: Internet
Author: User
Tags create index mysql create mysql delete mysql delete database table name mysql create index

MySQL Display database or table:

Show databases;//can then use database_name;

Show tables;

MySQL Change table name:

ALTER TABLE table_name rename new_t;

MySQL Add columns:

ALTER TABLE table_name ADD column c_n column attributes;

MySQL Delete column:

ALTER TABLE table_name DROP column c_n;

MySQL CREATE index:

ALTER TABLE c_table Add index (C_N1,C_N2);

ALTER TABLE c_table add unique index_name (c_n);

ALTER TABLE c_table add primary key (SID); Webjx.com

MySQL Delete index:

ALTER TABLE c_table DROP INDEX c_n1;

MySQL Change column information:

ALTER TABLE t_table change c_1 c_1 varchar (200);

ALTER TABLE t_table Modify 1 c_1 varchar (200);

Insert Insertion Statement:

INSERT INTO table_name (c_1,c_2) VALUES (' X1 ', 1);

UPDATE statement:

UPDATE table_name set c_1 =1 where c_2=3;

MySQL Delete database or table:

DROP TABLE table_name;

Drop database database_name;//using mysql_drop_db () can be deleted.

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.