flask常用的模型字段和参数 常用的字段类型表 字段说明 映射到数据库对应类型 Integer 整数 int类型 String 字符串,String类内可选择length参数的值用于设置最大字符个数 varchar类型 Text 用于储存较长的Unicode文本,,理论上可以储存65535个字节 ...
分类:
其他好文 时间:
2021-06-13 10:49:14
阅读次数:
0
模型中常用字段 字段 说明 AutoField 一般不需要使用这个类型,自增长类型,数据表的字段类型为整数,长度为11位 BigAutoField 自增长类型,数据表的字段类型为bigint,长度为20位 BooleanField 在模型层面接收的是True/False。在数据库层面是tinyint ...
分类:
其他好文 时间:
2021-05-24 12:41:10
阅读次数:
0
性能测试必备的 Linux 命令系列,可以看下面链接的文章哦 https://www.cnblogs.com/poloyy/category/1819490.html 介绍 系统启动up了(运行了)多长时间 语法格式 uptime [options] 字段说明 18:36:33:系统当前时间 up ...
分类:
其他好文 时间:
2021-02-24 12:48:55
阅读次数:
0
参考:https://www.cnblogs.com/mengfangui/p/11174583.html { // 名称 "name": "vue", // 版本 "version": "2.6.10", // 描述 "description": "Reactive, component-orie ...
分类:
Web程序 时间:
2020-12-18 13:12:38
阅读次数:
3
性能测试必备的 Linux 命令系列,可以看下面链接的文章哦 https://www.cnblogs.com/poloyy/category/1819490.html 介绍 输出 CPU 相关信息 mpstat 主要能看什么性能指标 每个 CPU 的不同类型 CPU 使用率、不同软中断类型次数统计、 ...
分类:
其他好文 时间:
2020-08-13 12:09:11
阅读次数:
47
SELECT 表名 = case when a.colorder = 1 then d.name else '' end, 表说明 = case when a.colorder = 1 then isnull(f.value, '') else '' end, 字段序号 = a.colorder, ...
分类:
数据库 时间:
2020-07-15 23:10:29
阅读次数:
116
Controller层添加注解 @Api:用于类;表示标识这个类是swagger的资源 属性名称 数据类型 默认值 说明 value String "" 字段说明 tags String[] "" 标签说明 description String "" 详情描述 basePath String "" ...
分类:
其他好文 时间:
2020-06-26 16:08:16
阅读次数:
386
前言 目标:预测测试集中乘客是否会存活 此项目数据集分为2份数据集titanic_train.csv和titanic_test.csv titanic_train.csv: 训练集,共计891条数据 titanic_test.csv: 测试集,共计418条数据 字段 字段说明PassengerId ...
分类:
其他好文 时间:
2020-06-05 15:10:48
阅读次数:
82
查找描述信息中包括robot的电影对应的分类名称以及电影数目,而且还需要该分类对应电影数量>=5部 film表为电影表,category表为电影分类表,film_category表为电影表与电影分类表的中间表(多对多的中间表) film表 字段 说明 film_id 电影id title 电影名称 ...
分类:
数据库 时间:
2020-04-19 14:33:30
阅读次数:
90
需求:使用cluster slots命令,获取redis cluster 主从对应关系。 说明:cluster slots命令对应的字段说明:http://redis.cn/commands/cluster-slots.html redis-cli -h IP -p PORT -a PASSWD - ...
分类:
其他好文 时间:
2020-04-14 12:31:09
阅读次数:
65