1.简介:作为DBA会经常需要检查所有的数据库或用户表,比如:检查所有数据库的容量;看看指定数据库所有用户表的容量,所有表的记录数...,我们一般处理这样的问题都是用游标分别处理处理,比如:在数据库检索效率非常慢时,我们想检查数据库所有的用户表,我们就必须通过写游标来达到要求;如果我们用sp_MSf ...
分类:
数据库 时间:
2020-03-30 09:24:46
阅读次数:
94
typeof 操作符 你可以使用 typeof 操作符来检测变量的数据类型。 typeof "John" // 返回 string typeof 3.14 // 返回 number typeof false // 返回 boolean typeof [1,2,3,4] // 返回 object ty ...
分类:
编程语言 时间:
2020-03-29 21:18:37
阅读次数:
75
@SpringBootApplication public class DemoApplication{ public static void main(Stirng[] args){ SpringApplication.run(DemoApplication.class, args); } } @ ...
分类:
编程语言 时间:
2020-03-29 21:09:45
阅读次数:
97
从open SAP的课程能看出,SAP Analytics Cloud也是部署在SAP Cloud Platform上: https://open.sap.com/courses/cp6 关于Smart Predict的Note: https://launchpad.support.sap.com/ ...
分类:
其他好文 时间:
2020-03-29 12:46:05
阅读次数:
78
Given a non-negative integer num represented as a string, remove k digits from the number so that the new number is the smallest possible. Note: The l ...
分类:
其他好文 时间:
2020-03-29 11:03:55
阅读次数:
74
Problem : Given a 32 bit signed integer, reverse digits of an integer. Example 1: Example 2: Example 3: Note: Assume we are dealing with an environmen ...
分类:
其他好文 时间:
2020-03-27 19:48:05
阅读次数:
67
计算机的组成 存储器,运算器,控制器,输出/输出设备 输入-》存储-》控制-》存储-》运算-》输出 输入--运算--输出 ssh 协议:本地主机与远程服务器之间进行加密的数据传输ssl 协议:信息安全加密协议程序是由若干指令组成的 OSI七层参考模型 物理层 数据链路层 传输介质,单元为数据帧 作用 ...
分类:
其他好文 时间:
2020-03-26 13:56:03
阅读次数:
100
[leetcode]1379. Find a Corresponding Node of a Binary Tree in a Clone of That Tree 链接 "leetcode" 描述 Given two binary trees original and cloned and giv ...
分类:
其他好文 时间:
2020-03-25 19:39:53
阅读次数:
70
Example input Copy 6 3 1 4 2 10 3 10 2 16 4 16 5 output Copy YES YES NO YES YES NO Note In the first test case, you can represent 3 as 3. In the secon ...
分类:
其他好文 时间:
2020-03-25 19:15:49
阅读次数:
92
https://www.runoob.com/note/34429 || , && ==逻辑运算符 | , & == 位运算符 && 如果两个操作数都非零,则条件为真;|| 如果两个操作数中有任意一个非零,则条件为真。 & 和 && 在判断语句中都可以实现“和”这个功能,区别在于 & 两边都运算;而 ...
分类:
其他好文 时间:
2020-03-25 10:47:51
阅读次数:
114