~~~
//修改字段类型
//alter table 表名 modify column 字段名 类型 null
alter table px_group_member modify column child tinyint(1) null not null default 0 comment '是否携带儿童'
//修改字段名
//alter table 表名 change 旧字段名 新字段名 类型 null
alter table px_equipment_icon change room_id layout_id int(11) not null DEFAULT 0 COMMENT '房型id'(将room_id改为layout_id)
//添加字段
//alter table 表名 add 字段名 类型 NOT NULL DEFAULT 0 COMMENT '注释'
alter table px_member add idcard varchar(15) NOT NULL DEFAULT 0 COMMENT '身份证'
//修改表名
//rename table 旧表名 to 新表名
rename table px_coupou to px_coupon
~~~
#### //控制器中操作数据库(对数据库表跟字段进行操作)
//语句在mysql中使用是一样的
例:
~~~
public function add(){
//在vtcms_finance表中添加day_price字段
$sql = "alter table vtcms_finance add day_price decimal(10,2) NOT NULL DEFAULT 0 COMMENT '当日价格'";
//执行数据库操作
$res = db()->execute($sql);
if($res){
return '成功!';
}else{
return '失败!';
}
}
~~~
#### MYSQL字段类型记录
UNSIGNED INT类型存储IP地址
PHP中也有两个转换函数:
ip2long:将字符串类型IP地址转为整型IP地址
long2ip:将整型IP地址转为字符串类型IP地址
- 空白目录
- 关于页面跳转跟重定向
- thinkphp5return的问题
- thinkphp5权限auth
- thinkphp5关联查询多表查询join
- javascript
- 数据库命令行操作
- php间隔一段时间自动执行
- PHP字符串首尾留N位,中间替换成*号
- tp5获取当前域名
- PHP常用函数
- 注册发送短信验证的接口详解
- php可逆加密解密
- 配置本地虚拟主机
- thinkphp5跨控制器调用
- thinkphp5框架加载流程
- thinkphp5路由详解
- thinkphp5功能集合
- thinkphp5数据库操作
- delete,put类型
- tp5数据库查询
- tp5数据库增删改
- 事务机制
- thinkphp模型model新建和查询
- tp5model的新增
- tp5model修改
- tp5model删除和软删除
- tp5视图
- tp5API