MySQL Note 4 Data sheet Operations 1

Source: Internet
Author: User

1 Viewing the structure of a table

(1) Show create TABLE + database name

(2) desc+ database name

2 Modifying a table

(1) Add a column to the table

ALTER TABLE database name add column addr varchar (20)//Add Address column

(2) Modifying a table column technician type

ALTER TABLE database name modify column sname varchar (20)

(3) Modify the name of a column

ALTER TABLE database name change addr work_add varchar (20)

(4) Modify the name of the table

ALTER TABLE database name rename new database table name

(5) View table structure

Show tables;

(6) Modifying the character set of a table

ALTER TABLE users DEFAULT CHARACTER SET UTF8;

(7) Delete a table

drop table + tables name

  

MySQL Note 4 Data sheet Operations 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.