查库: select schema_name from information_schema.schemata;查表: select table_name from information_schema.tables where table_schema='security';查列: select ...
分类:
数据库 时间:
2020-01-22 23:57:45
阅读次数:
178
https://help.github.com/cn/github/searching for information on github/searching for repositories search by repository name description or contents of ...
分类:
其他好文 时间:
2020-01-22 19:57:45
阅读次数:
68
1、获取当前应用的版本号 cordova plugin add cordova-plugin-app-version 2、获取网络连接信息 cordova plugin add cordova-plugin-network-information 3、获取GPS数据 cordova plugin a ...
分类:
其他好文 时间:
2020-01-22 14:33:18
阅读次数:
105
1、ANSI 多字节编码 最早时计算机只支持英文字符,都是用 ASCII(American Standard Code for Information Interchange,美国标准信息交换代码)编码,一个字母或符号只需要一个字节存储。微软针对本地化字符编码采用的就是用 ANSI(American ...
分类:
其他好文 时间:
2020-01-21 18:10:03
阅读次数:
73
题目传送门 中文翻译: 给定一颗无向带权树,要切断所有叶子节点和根节点的联系,每次切断的费用不能超过上限 Limit,问在保证 总费用 <=m 的情况下最小的 Limit 解题思路: f[i]表示以i为根的树的最佳答案,加二分答案. AC代码: #include<iostream> #include ...
分类:
其他好文 时间:
2020-01-20 00:24:45
阅读次数:
59
原文:获取数据表列相关数据 虽然本人在开发数据库时,不太使用视图,但是还是知道 如何获取视图中使用的所有表列: SELECT * FROM INFORMATION_SCHEMA.VIEW_COLUMN_USAGE View Code 如何获取包含视图所有表: SELECT * FROM INFORM... ...
分类:
其他好文 时间:
2020-01-17 10:17:42
阅读次数:
71
博弈 Game 的分类维度 Deterministic or stochastic? One, two, or more players? Zero sum? Perfect information (can you see the state)? Adversarial Search 对抗搜索 A ...
分类:
其他好文 时间:
2020-01-16 11:01:47
阅读次数:
145
swapoff -a && kubeadm reset && systemctl daemon-reload && systemctl restart kubelet && iptables -F && iptables -t nat -F && iptables -t mangle -F && i ...
分类:
其他好文 时间:
2020-01-15 19:44:44
阅读次数:
468
一、查看服务器硬件信息 (1)查看服务器型号、序列号 [root@Master ~]# dmidecode|grep "System Information" -A9|egrep "Manufacturer|Product|Serial" (2)查看主板型号[root@Master ~]# dmid ...
分类:
系统相关 时间:
2020-01-13 23:51:53
阅读次数:
145
/* 数字和字符的对照关系表(编码表): ASCII码表:American Standard Code for Information Interchange,美国信息交换标准代码。 Unicode码表:万国码。也是数字和符号的对照关系,开头0-127部分和ASCII完全一样,但是从128开始包含有 ...
分类:
编程语言 时间:
2020-01-13 19:30:13
阅读次数:
99