
msq
a迷人帅气的小宇
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
msq常用语句
选择:select * from table1 where 范围 插入:insert into table1(field1,field2) values(value1,value2) 删除:delete from table1 where 范围 更新:update table1 set field1=value1 where 范围 查找:select * from table1 where fie...转载 2019-05-31 19:10:29 · 1326 阅读 · 0 评论 -
MySQL学习笔记
关于MySQL日期操作函数 date_formate 的使用 基本语法: DATE_FORMAT(date,format) 说明:date 参数是合法的日期。format 规定日期/时间的输出格式。 可以用的格式主要有 格式 描述 %a 缩写星期名 %b 缩写月名 %c 月,数值 %D 带有英文前缀的月中的天 %d 月的天,数值(00-31) %e 月的天,数值(0-31) %f 微秒 %H 小时...转载 2019-05-31 20:46:48 · 168 阅读 · 0 评论