Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
CSDN 技术社区
skill_tree_mysql
提交
a426a398
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看板
提交
a426a398
编写于
5月 23, 2022
作者:
M
Mars Liu
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
text
上级
079814a1
变更
6
隐藏空白更改
内联
并排
Showing
6 changed file
with
207 addition
and
4 deletion
+207
-4
data/1.MySQL初阶/4.数据类型/3.文本字符串类型/config.json
data/1.MySQL初阶/4.数据类型/3.文本字符串类型/config.json
+4
-2
data/1.MySQL初阶/4.数据类型/3.文本字符串类型/description.json
data/1.MySQL初阶/4.数据类型/3.文本字符串类型/description.json
+8
-0
data/1.MySQL初阶/4.数据类型/3.文本字符串类型/description.md
data/1.MySQL初阶/4.数据类型/3.文本字符串类型/description.md
+89
-0
data/1.MySQL初阶/4.数据类型/4.二进制字符串类型/binary.json
data/1.MySQL初阶/4.数据类型/4.二进制字符串类型/binary.json
+8
-0
data/1.MySQL初阶/4.数据类型/4.二进制字符串类型/binary.md
data/1.MySQL初阶/4.数据类型/4.二进制字符串类型/binary.md
+94
-0
data/1.MySQL初阶/4.数据类型/4.二进制字符串类型/config.json
data/1.MySQL初阶/4.数据类型/4.二进制字符串类型/config.json
+4
-2
未找到文件。
data/1.MySQL初阶/4.数据类型/3.文本字符串类型/config.json
浏览文件 @
a426a398
{
"node_id"
:
"mysql-27ff66e31d3d4118977cbbc04da6887e"
,
"keywords"
:
[],
"keywords"
:
[
"text"
,
"varchar"
,
"char"
,
"字符串"
,
"文本"
],
"children"
:
[],
"export"
:
[],
"export"
:
[
"description.json"
],
"keywords_must"
:
[],
"keywords_forbid"
:
[],
"group"
:
0
...
...
data/1.MySQL初阶/4.数据类型/3.文本字符串类型/description.json
0 → 100644
浏览文件 @
a426a398
{
"type"
:
"code_options"
,
"author"
:
"Mars"
,
"source"
:
"description.md"
,
"notebook_enable"
:
false
,
"exercise_id"
:
"772f9b0947074197bbeb414fd5a094b0"
}
\ No newline at end of file
data/1.MySQL初阶/4.数据类型/3.文本字符串类型/description.md
0 → 100644
浏览文件 @
a426a398
# 文本字段
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()
);
```
现在他需要给订单表加入一个 description 字段,这个字段需要保存订单的文字说明,这些文本不会超过两千字节, 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),
description varchar(2000),
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),
description char(2000),
ts timestamp 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),
description varchar(256) default '',
ts timestamp default now()
);
```
### 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),
description text(2000),
ts timestamp 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),
description tinytext(2000),
ts timestamp default now()
);
```
\ No newline at end of file
data/1.MySQL初阶/4.数据类型/4.二进制字符串类型/binary.json
0 → 100644
浏览文件 @
a426a398
{
"type"
:
"code_options"
,
"author"
:
"Mars"
,
"source"
:
"binary.md"
,
"notebook_enable"
:
false
,
"exercise_id"
:
"b3cdc6ba96d544969c08fe697df32dde"
}
\ No newline at end of file
data/1.MySQL初阶/4.数据类型/4.二进制字符串类型/binary.md
0 → 100644
浏览文件 @
a426a398
# 二进制字符串
现在 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),
description varchar(2000),
ts timestamp default now()
);
```
他需要添加一个字段,用来保存订单的相关图片,由于特殊的业务需要,这些图片必须保存在数据库中,图片的大小不超过100K。那么他应该将建表语句修改为:
## 答案
```
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),
description varchar(2000),
picture blob,
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),
description varchar(2000),
picture varchar(100000),
ts timestamp 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),
description varchar(2000),
picture text,
ts timestamp default now()
);
```
### 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),
description varchar(2000),
picture binary(100000),
ts timestamp 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),
description varchar(2000),
picture varbinary(100000),
ts timestamp default now()
);
```
data/1.MySQL初阶/4.数据类型/4.二进制字符串类型/config.json
浏览文件 @
a426a398
{
"node_id"
:
"mysql-ec8f22f2c63a4f27bd12815644d0f3db"
,
"keywords"
:
[],
"keywords"
:
[
"binary"
,
"blob"
,
"二进制"
],
"children"
:
[],
"export"
:
[],
"export"
:
[
"binary.json"
],
"keywords_must"
:
[],
"keywords_forbid"
:
[],
"group"
:
0
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录