赞
踩
update 表名 set 字段=值
案例:update tb001 set name="张三"
update 表名 set 字段=值 where 记录=值
案例:update tb001 set name="李四" where id=3
alter database 库名 character set "字符集" collate "排序规则"
alter table 表名 add column 字段名 字段属性 after 字段名
alter table 表名 drop column 字段名
alter table 表名 change column 字段名 新字段名 属性约束
alter table 表名 change column 字段名 字段属性 default 值
alter table 表名 modify column 字段名 属性 after 位置
查看数据库所支持的字符集:show charset
查看当前数据库的字符集:show create database 库名
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。