[mysql]【日期类型】 怎样实现时间是从1970年1月1日现在的秒数,又该...
发布网友
发布时间:2022-04-23 13:06
我来回答
共3个回答
热心网友
时间:2022-04-07 17:18
嘿嘿, 把分数交出来吧
mysql 有3种时间类型, 分别是 date, datetime, timestamp
详解: http://hi.baidu.com/olsonlowey/blog/item/6f5efe27225b8306918f9dbb.html
然后回答你如何互相转换.
PHP 里
$a = '2011-07-27 07:47:12'; // 这个是年月日,时分秒的格式
$b = strtotime($a); // 得出的结果$b, 就是 $a 的时间戳, 也就是你要的 timestamp
$c = date('Y-m-d H:i:s', $b); // 得出的结果$c 就是 $b 这个时间戳转换成 年月日时分秒的格式
最后回答你设置外键, 语法:
ALTER table IC_Release add foreign key(ic_id) references IC(id) on delete restrict on update restrict;
详细参考资料: http://hi.baidu.com/%C1%F5%BD%DC%D7%AA%C9%ED%CE%A2%D0%A6/blog/item/b2ee3e3c672d0835b9998f7e.html
祝好运追问我晕。。。不是自己百度的把。。。方便加好友吗?
追答不方便,哈哈. 只是为了赚点分才来回答的
热心网友
时间:2022-04-07 18:36
给你写个样板吧!
create table SC( //此表为从表
Sno char(10),
Cno char(10),
Grade int,
primary key(Sno,Cno),
foreign key(Sno) references Student(Sno),
foreign key(Cno) references Course(Cno),
check(Grade between 0 and 150))
create table Student( //此表为主表
Sno char(10),
Sname char(10),
Sgender char(10),
Sage int,
Sdept char(20)
primary key(Sno),
check (Sage between 0 and 150))
create table Course( //此表为主表
Cno char(10),
Cname char(10),
Cpno char(10),
Ccredit char(10),
primary key(Cno),
check(Ccredit between 0 and 150))
主表student的sno 与 主表course的cno 共同构成sc的主键,由于是引用主表的主键,其主键就为外键,设置外键使用下列命令:
foreign key(从表主键1 sno) references 主表(主键sno),
foreign key(从表主键2 cno) references 主表(主键cno),
热心网友
时间:2022-04-07 20:11
CLS
INPUT