Home > Database > Mysql Tutorial > body text

What is the statement to modify table comments in mysql

WBOY
Release: 2022-04-12 18:19:47
Original
5955 people have browsed it

In mysql, the statement to modify table comments is "alter table table name comment 'comment content';"; the alter statement is used to modify the structure of a table. It can add or delete columns, or change the table. The type of comment and table. The comment attribute is used to represent comments.

What is the statement to modify table comments in mysql

The operating environment of this tutorial: windows10 system, mysql8.0.22 version, Dell G3 computer.

What is the statement in mysql to modify table comments

“alter table 表名 comment '注释内容';”
Copy after login

alterTABLE allows you to modify the structure of an existing table. For example, you can add or delete columns, create or delete indexes, change the type of existing columns, or rename columns or the table itself. You can also change the table annotation and the table type.

Common usage of alter

1: Delete a column

ALTER TABLE 【表名字】 DROP 【列名称】
Copy after login

2: Add a column

ALTER TABLE 【表名字】 ADD 【列名称】 INT NOT NULL  COMMENT '注释说明'
Copy after login

3: Modify the type information of a column

ALTER TABLE 【表名字】 CHANGE 【列名称】【新列名称(这里可以用和原来列同名即可)】 BIGINT NOT NULL  COMMENT '注释说明'
Copy after login

4: Rename column

ALTER TABLE 【表名字】 CHANGE 【列名称】【新列名称】 BIGINT NOT NULL  COMMENT '注释说明'
Copy after login

5: Rename table

ALTER TABLE 【表名字】 RENAME 【表新名字】
Copy after login

6: Delete primary key in table

Alter TABLE 【表名字】 drop primary key
Copy after login

7: Add primary key

ALTER TABLE sj_resource_charges ADD CONSTRAINT PK_SJ_RESOURCE_CHARGES PRIMARY KEY (resid,resfromid)
Copy after login

Recommended learning: mysql video tutorial

The above is the detailed content of What is the statement to modify table comments in mysql. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!