2017-6-29 aslronx
原文:http://blog.sciencenet.cn/blog-448935-602302.html2017-6-25 aslronx
原文:https://www.cnblogs.com/loveyoume/p/6076101.html2017-6-17 aslronx
原文:https://www.cnblogs.com/skylaugh/p/5069416.html2017-6-13 aslronx
原文:http://www.cnblogs.com/olive27/p/6101338.html2017-6-10 aslronx
原文:https://www.cnblogs.com/simba-lkj/p/8027625.html2017-6-8 aslronx
添加字段
alter table ke_shop add shop_name varchar(255) comment'店铺展示图'
修改某个表的字段类型及指定为空或非空
alter table 表名称 change 字段名称 字段名称 字段类型 [是否允许非空];
alter table 表名称 modify 字段名称 字段类型 [是否允许非空];
alter table ke_chanpin change coupon_share_url coupon_share_url text comment '优惠券地址'
修改某个表的字段名称及指定为空或非空
alter table 表名称 change 字段原名称 字段新名称 字段类型 [是否允许非空];
alter table ke_user change youhuiquan_num int(11) unsigned not null default 0 comment '优惠券数量'
删除数据库
DROP DATABASE 数据库名;
修改表名
ALTER TABLE 旧表名 RENAME 新表名;
删除字段
ALTER TABLE 表名 DROP 属性名;
更改表的储存引擎
ALTER TABLE 表名 ENGINE = 存储引擎名;
删除表的外键约束
ALTER TABLE 表名 DROP FOREIGN KEY 外键别名;
删除表
DROP TABLE 表名;
修改字段的值
UPDATE 表名称 SET 列名称 = 新值 WHERE 列名称 = 某值
update user set wallet = 500 where id = 1
2017-6-8 aslronx
PHP伪静态
概念:伪静态就是把url进行修饰,
作用:看着美观,利于百度seo收录,隐藏技术细节
Apache配置伪静态
Apache中的配置文件httpd.conf
第一步:进入apache,将url模块开启
第二步:在程序根目录新建一个.htaccess
参考:http://www.cnblogs.com/bravehunter/p/5687055.html
Nginx配置伪静态 nginx.conf
参考:http://blog.csdn.net/wave_1102/article/details/46483897
2017-6-6 aslronx
原文:http://www.jb51.net/article/32747.htm2017-6-2 aslronx
原文:https://blog.csdn.net/w632235548/article/details/54599748