Android license status unknown and also Android sdkmanager tool not found ...
分类:
移动开发 时间:
2020-03-12 15:53:36
阅读次数:
84
There is a room with n lights which are turned on initially and 4 buttons on the wall. After performing exactly m unknown operations towards buttons, ...
分类:
其他好文 时间:
2020-03-12 14:11:04
阅读次数:
77
行: DBGrid1.DataSource.DataSet.RecNo; //行 列: 如果有 column 属性则 column.Index; //列 否则: DBGrid1.SelectedIndex; //列 创建时间:2020.03.12 更新时间: 来源:https://www.cnblo ...
分类:
数据库 时间:
2020-03-12 09:59:56
阅读次数:
110
读取doc,docx文件 1. 使用office,wps工具打开文件另存为 2. 针对doc文件,antiword 提取doc文件信息 2.1 安装 windows Linux 2.2 使用说明 antiword t xxx.doc 输出文件信息 antiword f xxx.doc 格式化输出文件 ...
分类:
其他好文 时间:
2020-03-11 13:53:42
阅读次数:
71
在使用python导出数据库中数据的时候,往往除了插入的数据以外,还有表字段等信息需要导出 查阅了资料后发现了2种方法 第一种:在mysql自带的表里查询,这个表保存了每张表的字段信息,可以用pymysql执行下面的sql语句 第二种:使用pymysql获取 ...
分类:
数据库 时间:
2020-03-10 20:10:45
阅读次数:
220
1.PRIMARY KEY(主键索引) mysql>ALTER TABLE `table_name` ADD PRIMARY KEY ( `column` ) 2.UNIQUE(唯一索引) mysql>ALTER TABLE `table_name` ADD UNIQUE (`column` ) 3 ...
分类:
数据库 时间:
2020-03-10 15:52:52
阅读次数:
71
desc 表名;show columns from 表名;describe 表名;show create table 表名; ...
分类:
数据库 时间:
2020-03-10 11:38:37
阅读次数:
54
触发场景 多表联合查询的时候,2个或多个表内有相同字段名,例如:user表内有字段名user_id,account表内有字段名user_id,那么在user表和account表联合查询的时候where条件如果不指定user_id属于哪个表就会报错。 解决方法 在联表查询语句中条件字段前面加上对应的表 ...
分类:
其他好文 时间:
2020-03-10 11:34:57
阅读次数:
50
目录 " 一.InnoDB索引 " " 二.B+树 " " 三.聚集索引和辅助索引 " " 四.索引实战 " " 五.索引操作与规则 " 重建索引 索引覆盖 最左前缀原则 索引下推 用索引和用索引快速定位却别 " 六.普通索引和唯一索引如何选择 " 前提 普通索引和唯一索引下的查询 普通索引和唯一索 ...
分类:
数据库 时间:
2020-03-09 19:35:12
阅读次数:
83
mysql5.7执行sql语句报错:In aggregated query without GROUP BY, expression #1 of SELECT list contains nonaggregated column 'football.order.id'; this is incomp ...
分类:
数据库 时间:
2020-03-09 18:18:35
阅读次数:
124