class ZBPC_PCD_GET definition public final create public . public section. constants CON_BJZF type CHAR32 value 'BJZFBCSYB' ##NO_TEXT. constants CON_T ...
分类:
其他好文 时间:
2019-12-20 22:39:48
阅读次数:
98
基本语法: 新建表: 语法:CREATE TABLE <表名> ([表定义选项])[表选项][分区选项]; [表定义选项]的格式为: <列名1> <类型1> [,…] <列名n> <类型n> CREATE TABLE 命令语法比较多,其主要是由表创建定义(create-definition)、表选项 ...
分类:
其他好文 时间:
2019-12-19 13:25:08
阅读次数:
86
DDL DDL的概述 DDL(Data Definition Language 数据定义语言)用于操作对象和对象的属性,这种对象包括数据库本身,以及数据库对象,像:表、视图等等,DDL对这些对象和属性的管理和定义具体表现在Create、Drop和Alter上。特别注意:DDL操作的“对象”的概念,” ...
分类:
其他好文 时间:
2019-12-16 16:13:36
阅读次数:
85
写在前面的话&&About me 网上写spring的文章多如牛毛,为什么还要写呢,因为,很简单,那是人家写的;网上都鼓励你不要造轮子,为什么你还要造呢,因为,那不是你造的。 我不是要造spring,我只是想把自己学习spring的一些感想,一些心得说出来,希望大家看到有不对的地方,请一定不吝赐教。 ...
分类:
编程语言 时间:
2019-12-15 16:52:22
阅读次数:
97
常用SQL语句 SQL对大小写不敏感 DDL(Data Definition Language 数据定义语言)CREATE、ALTER、DROP等; DML(Data Manipulation Language 数据操作语言)SELECT、UPDATE、INSERT、DELETE等; DCL(Dat ...
分类:
数据库 时间:
2019-12-15 10:40:57
阅读次数:
89
Combining Sketch and Tone for Pencil Drawing Production [toc] paper content understanding algorithm understand |variable name|variable definition| |: ...
1 /** 2 * Definition for a binary tree node. 3 * public class TreeNode { 4 * int val; 5 * TreeNode left; 6 * TreeNode right; 7 * TreeNode(int x) { val ...
分类:
其他好文 时间:
2019-12-13 00:11:09
阅读次数:
93
如下的 schema 定义了每行是一个组合类型Document:(required表示必须有,optional表示可选,repeated表示可重复的,即数组(数组长度可以是0)。group类似于struct) message Document { required int64 DocId; opti ...
分类:
其他好文 时间:
2019-12-12 14:55:03
阅读次数:
105
Given a binary tree, find the lowest common ancestor (LCA) of two given nodes in the tree. According to the definition of LCA on Wikipedia: “The lowes ...
分类:
其他好文 时间:
2019-12-08 01:34:55
阅读次数:
120
Given a binary search tree (BST), find the lowest common ancestor (LCA) of two given nodes in the BST. According to the definition of LCA on Wikipedia ...
分类:
其他好文 时间:
2019-12-08 00:58:19
阅读次数:
99