博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
mysql小技巧
阅读量:5226 次
发布时间:2019-06-14

本文共 865 字,大约阅读时间需要 2 分钟。

//增加对应的秒数 select end_time+ interval 10 second from student;

 当我们需要在定时计划中检测时间,下面的方法就有用了,直接上sql语句,一看便知

//判断当前日天的天数 select *from creditwhere DAY(now())=27;
 
//判断当前日天的月份 select *from creditwhere Month(now())=1;
//判断当前日天的年份 select *from creditwhere year(now())=1;
//判断当前日天的时间 select *from credit where time(now())='15:16:27';

 

事件计划

查看事件计划是否开启 SHOW VARIABLES LIKE 'event_scheduler' 开启event_scheduler sql指令:SET GLOBAL event_scheduler = ON;关闭event_scheduler指令:SET GLOBAL event_scheduler = OFF;

导入文本文件中的数据

load data local infile "a.txt" into table user

 临时表

CREATE TEMPORARY TABLE tmp_table(    SELECT        id,        name    FROM        tb_user);

 使用group_concat将行转列

//根据分组将所有的记录组合到同一个字段中 select id,name,cource group_concat(a.cource,":",a.score)as scorefrom(  select  id, distinct name,cource,score from table    group by name)a

 

转载于:https://www.cnblogs.com/ives/p/6589598.html

你可能感兴趣的文章
MSP430看门狗使用笔记&&低功耗模式下如何用看门狗监控程序跑飞
查看>>
C#通过DllImport引入dll中的C++非托管类(转)
查看>>
sparkSQL、dataframe
查看>>
h5+css 垂直导航菜单
查看>>
VMware12 + Ubuntu16.04 虚拟磁盘扩容
查看>>
pwershell switch 语句
查看>>
学习Spring Boot:(五)使用 devtools热部署
查看>>
三人行有我师?取长补短?影响力?
查看>>
设计模式——设计模式概述
查看>>
封装一个获取module.exports内容的方法
查看>>
动态连接库
查看>>
ServletContext 与application的异同
查看>>
水平垂直居中
查看>>
CSS3教程:border-image属性
查看>>
asp.netmvc常见功能链接
查看>>
sql server系统表详细说明
查看>>
[译] ASP.NET MVC 6 attribute routing – the [controller] and [action] tokens
查看>>
每日英语:Here's Why You Won't Finish This Article
查看>>
CentOS7 Failed to start LSB: Bring up/down
查看>>
安卓SQLite数据库
查看>>