有时需要将日期类型值转换成毫秒值,有时也要将毫秒值转换成日期,为了更方便,满足查询的需要。
现在,新建一张数据库表t_stu_info,并向表里插入数据
use test;
show tables;
create table t_stu_info(
id int not null primary key,
stu_name varchar(20),
...
分类:
数据库 时间:
2015-04-24 21:09:52
阅读次数:
209
df -Th查看文件系统及挂载点parted /dev/sdcmklabel gptprintmkpart primary 0KB 2000GB/dev/hdb1 is apparently in use by the system; will not make a filesystem here!...
分类:
其他好文 时间:
2015-04-24 18:42:15
阅读次数:
117
--省表 create table tb_province ( pID int NOT NULL PRIMARY KEY, pName varchar(32) ) --省 insert into tb_province values(1,'北京市') inser...
分类:
数据库 时间:
2015-04-24 15:52:27
阅读次数:
196
站内信表结构设计 一个人可以点对点发 点对群发 但是双方都可以选择自己是否删除 同时管理员能看到全部 的表结构设计create table message_sender(mid int unsigned not null primary key auto_increment comment '站内信...
分类:
其他好文 时间:
2015-04-24 15:42:18
阅读次数:
127
添加表字段alter table table1 add transactor varchar(10) not Null;alter table table1 add id int unsigned not Null auto_increment primary key修改某个表的字段类型及指定为空....
分类:
数据库 时间:
2015-04-24 14:13:47
阅读次数:
229
1、问题
如题目所说,通过MySQL获取某年某月所有的天数。如获取2014年2月的所有日期。
2、处理过程
2.1 创建一个数字辅助表
CREATE TABLE `nums` (
`key` int(11) NOT NULL,
PRIMARY KEY (`key`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='数字辅助表'...
分类:
数据库 时间:
2015-04-24 10:40:59
阅读次数:
362
1、错误描述
1 queries executed, 0 success, 1 errors, 0 warnings
查询:create table example3( id Primary key, stu_id int, constraint c_fk foreign key(stu_id,course_id) references example2(stu_id,cour...
错误代...
分类:
其他好文 时间:
2015-04-24 01:09:40
阅读次数:
132
11g dataguard standby 切成主库,测试完成后恢复为原standby 环境
#######################
概述:
11204 单机对单机实施dg,因局方要求需要(读写模式)打开standby ;而这时原生产环境不能有任何影响动,依然对服务;
采用的思路是:standby 直接failover 为primary db;这时原有dg关系被破坏,互不影...
分类:
数据库 时间:
2015-04-23 21:48:18
阅读次数:
351
原文地址:http://engineeringblog.yelp.com/2015/04/true-zero-downtime-haproxy-reloads.htmlHAProxy: Cornerstone of Reliable WebsitesOne primary goal of the i...
分类:
其他好文 时间:
2015-04-23 19:17:31
阅读次数:
142
众所周知的几个结果集集合操作命令,今天详细地测试了一下,发现一些问题,记录备考。假设我们有一个表Student,包括以下字段与数据:drop table student;create table student ( id int primary key, name nvarchar2(50) not...
分类:
数据库 时间:
2015-04-23 15:01:54
阅读次数:
131