博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
mysql 创建时间字段
阅读量:4963 次
发布时间:2019-06-12

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

 

alter table table1 add order_date datetime null;

 

mysql> select * from table1;+----------+------------+-----+------------+| name_new | transactor | pid | order_date |+----------+------------+-----+------------+| 1hahha   | 1xiaohong  |   1 | NULL       || 2hahha   | 2xiaohong  |   2 | NULL       || 3hahha   | 3xiaohong  |   3 | NULL       || 4hahha   | 4xiaohong  |   4 | NULL       || 3hahha   | bob        |   5 | NULL       || 3hahha   | lee        |   6 | NULL       |+----------+------------+-----+------------+6 rows in set (0.00 sec)

 

 

转载于:https://www.cnblogs.com/sea-stream/p/11299649.html

你可能感兴趣的文章
C++中“引用”的底层实现
查看>>
Spring Cloud与微服务构建:微服务简介
查看>>
Babel 是干什么的
查看>>
cocos2dx-3.0(8)------Label、LabelTTF、LabelAtlas、LabelBMFont使用之法
查看>>
CODE[VS] 1842 递归第一次
查看>>
20180418小测
查看>>
数字三角形
查看>>
NGUI 减少drawcall规则
查看>>
三元表达,匿名函数
查看>>
前端笔记-基础笔记
查看>>
【LeetCode & 剑指offer刷题】查找与排序题6:33. Search in Rotated Sorted Array(系列)
查看>>
GNU/Linux超级本ZaReason Ultralap 440体验
查看>>
将github上托管的代码 在我的域名下运行
查看>>
【Manthan, Codefest 18 (rated, Div. 1 + Div. 2) C】Equalize
查看>>
【codeforces 767A】Snacktower
查看>>
【MemSQL Start[c]UP 3.0 - Round 1 C】 Pie Rules
查看>>
Ognl中“%”、“#”、“$”详解
查看>>
我对应用软件——美团的看法
查看>>
执行了的程序,才是你的程序.
查看>>
struts2.x + Tiles2.x读取多个xml 配置文件
查看>>