Home > Database > Mysql Tutorial > body text

MySQL动态添删改列字段

WBOY
Release: 2016-06-07 16:18:31
Original
1057 people have browsed it

好吧,我承认是自己项目中重大的失误,在这个项目试运行期间,对数据库字段的长度以及字段的值进行修改了两次,为了不影响里边已经存在的数据,那么我只能是再次寻找一种方法去动态增删改列字段 动态增加列字段 ? 1 alter table TableName drop column field

  好吧,我承认是自己项目中重大的失误,在这个项目试运行期间,对数据库字段的长度以及字段的值进行修改了两次,为了不影响里边已经存在的数据,那么我只能是再次寻找一种方法去动态增删改列字段

  动态增加列字段

?

1

alter table TableName drop column field_id;

  动态删除列字段

?

1

alert TABLE table_name change old_field_name new_field_name field_type;

  动态修改列字段

?

1

alert TABLE table_name change old_field_name new_field_name field_type;

  错误以及自己的想说的一些话,我都写在了这个博客中(MySQL动态修改varchar长度),,大家也可以看看,其实这样的做法是我们不提倡的

 

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!