Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
CSDN 技术社区
skill_tree_mysql
提交
079814a1
S
skill_tree_mysql
项目概览
CSDN 技术社区
/
skill_tree_mysql
通知
21
Star
0
Fork
1
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
S
skill_tree_mysql
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1
Issue
1
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
079814a1
编写于
5月 23, 2022
作者:
M
Mars Liu
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
datetime
上级
35740d4c
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
98 addition
and
5 deletion
+98
-5
data/1.MySQL初阶/4.数据类型/1.数值类型/config.json
data/1.MySQL初阶/4.数据类型/1.数值类型/config.json
+1
-1
data/1.MySQL初阶/4.数据类型/1.数值类型/numbers.json
data/1.MySQL初阶/4.数据类型/1.数值类型/numbers.json
+4
-3
data/1.MySQL初阶/4.数据类型/2.日期和时间类型/config.json
data/1.MySQL初阶/4.数据类型/2.日期和时间类型/config.json
+3
-1
data/1.MySQL初阶/4.数据类型/2.日期和时间类型/datetime.json
data/1.MySQL初阶/4.数据类型/2.日期和时间类型/datetime.json
+8
-0
data/1.MySQL初阶/4.数据类型/2.日期和时间类型/datetime.md
data/1.MySQL初阶/4.数据类型/2.日期和时间类型/datetime.md
+82
-0
未找到文件。
data/1.MySQL初阶/4.数据类型/1.数值类型/config.json
浏览文件 @
079814a1
...
...
@@ -3,7 +3,7 @@
"keywords"
:
[],
"children"
:
[],
"export"
:
[
"number.json"
"number
s
.json"
],
"keywords_must"
:
[],
"keywords_forbid"
:
[],
...
...
data/1.MySQL初阶/4.数据类型/1.数值类型/number.json
→
data/1.MySQL初阶/4.数据类型/1.数值类型/number
s
.json
浏览文件 @
079814a1
{
"type"
:
"code_options"
,
"author"
:
"
ccat
"
,
"source"
:
"number.md"
,
"author"
:
"
Mars
"
,
"source"
:
"number
s
.md"
,
"notebook_enable"
:
false
,
"exercise_id"
:
"
39244600680e40848e6ab8af71f22cf
1"
"exercise_id"
:
"
0093549d885b4eec8f556fc86cc6043
1"
}
\ No newline at end of file
data/1.MySQL初阶/4.数据类型/2.日期和时间类型/config.json
浏览文件 @
079814a1
...
...
@@ -2,7 +2,9 @@
"node_id"
:
"mysql-7256fe88bcf241d486c9e2e254ef66d9"
,
"keywords"
:
[],
"children"
:
[],
"export"
:
[],
"export"
:
[
"datetime.json"
],
"keywords_must"
:
[],
"keywords_forbid"
:
[],
"group"
:
0
...
...
data/1.MySQL初阶/4.数据类型/2.日期和时间类型/datetime.json
0 → 100644
浏览文件 @
079814a1
{
"type"
:
"code_options"
,
"author"
:
"Mars"
,
"source"
:
"datetime.md"
,
"notebook_enable"
:
false
,
"exercise_id"
:
"9f51c5816b1047368bdab70cb20d5116"
}
\ No newline at end of file
data/1.MySQL初阶/4.数据类型/2.日期和时间类型/datetime.md
0 → 100644
浏览文件 @
079814a1
# 时间默认值
Joe 写了一个订单表的创建语句:
```
mysql
create table orders (
id int primary key auto_increment,
item_id int,
amount int,
unit_price decimal(12, 4),
total_price decimal(12, 4)
);
```
现在,Joe 需要给这个表加入下单时间,即订单写入数据库的时间,那么他应该将这个语句修改为:
## 答案
```
mysql
create table orders (
id int primary key auto_increment,
item_id int,
amount int,
unit_price decimal(12, 4),
total_price decimal(12, 4),
ts timestamp default now()
);
```
## 选项
### A
```
mysql
create table orders (
id int primary key auto_increment,
item_id int,
amount int,
unit_price decimal(12, 4),
total_price decimal(12, 4),
ts varchar(16) default now()
);
```
### B
```
mysql
create table orders (
id int primary key auto_increment,
item_id int,
amount int,
unit_price decimal(12, 4),
total_price decimal(12, 4),
ts varchar(16) format 'yyyy-mm-dd'
);
```
### C
```
mysql
create table orders (
id int primary key auto_increment,
item_id int,
amount int,
unit_price decimal(12, 4),
total_price decimal(12, 4),
ts date default now()
);
```
### D
```
mysql
create table orders (
id int primary key auto_increment,
item_id int,
amount int,
unit_price decimal(12, 4),
total_price decimal(12, 4),
ts datetime default now()
);
```
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录