简单介绍:做删除的时候,需要判断XX的日期,如果在有效期内,则不能删除,已过期,或者是未生效都可以删除.刚看到的时候,就有点懵逼了,因为不知道该怎么判断,最初,想的是查询XX的开始日期和截止日期,看看当前时间 new Date() 是否在between startTime and endTime 之外,如果是的话,就可以删除,否则,不能删除,想法倒是挺美的,关键是怎么写sql啊,难道sql还能返回true false?结果就卡在这里了.后来,我灵机一动,终于想出来了该怎么做,hah༺༺超༒
/** 题目:Confusing Date Format UVALive 7711 链接:https://vjudge.net/contest/174844#problem/A 题意:给定mm-mm-mm格式的时间.年份(1900-1999)只给了后两位数,问有多少种合法的排列使时间正确. 思路: 第一次:快速读题,题意不清,没注意到这句话, To punish teams who did not read this problem statement carefully, we’ll add
原文地址:http://blog.csdn.net/sushengmiyan/article/details/50360451 Generated and default property values 生成的和默认的属性值 The database sometimes generates a property value, usually when you insert a row for the first time. 数据库通常会在第一次插入一条数据的时候产生一个属性值. Examples
Generated and default property values 生成的和默认的属性值 The database sometimes generates a property value, usually when you insert a row for the first time. 数据库通常会在第一次插入一条数据的时候产生一个属性值. Examples of database-generated values are a creation timestamp, a defaul
一.mysql安装后error_log日志时间戳默认为UTC(如下图),因此会造成与系统时间不一致,与北京时间相差8个小时. 解决errro_logs时间戳与linux系统时间不一致问题 step1: 登录到mysql环境执行 SET GLOBAL log_timestamps = SYSTEM;(立即生效,重启mysql服务,失效) step2: vim /etc/my.cnf 添加配置如下,保证下次mysqld重启依然生效: 二.关于mysql的error_log出现" Got an err