http://www.codeceo.com/article/15-basic-sql-for-beginner.html创建表和数据插入create table,insert into ... values()简单select查询select合计与标量count, avg, max, min, s...
分类:
数据库 时间:
2014-10-08 14:08:05
阅读次数:
250
SET IDENTITY_INSERT products ONinsert into products(pid,pname) values (1,'pname1');insert into products(pid,pname) values (2,'pname2');insert into pro...
分类:
其他好文 时间:
2014-10-08 13:27:25
阅读次数:
172
[leetcode]Given n, how many structurally unique BST's (binary search trees) that store values 1...n?...
分类:
其他好文 时间:
2014-10-08 12:00:15
阅读次数:
159
Given n, generate all structurally unique BST's (binary search trees) that store values 1...n.
For example,
Given n = 3, your program should return all 5 unique BST's shown below.
1 3 ...
分类:
其他好文 时间:
2014-10-08 11:52:35
阅读次数:
202
Given a binary tree, return the inorder traversal of its nodes' values.
For example:
Given binary tree {1,#,2,3},
1
2
/
3
return [1,3,2].
/**
* Definition for b...
分类:
其他好文 时间:
2014-10-08 10:45:45
阅读次数:
106
准备: create table T4(X int ,Y int);方法 1、 insert [low_priority][high_priority][delayed] into table_name values(...),(...).....; insert into T4(X...
分类:
数据库 时间:
2014-10-08 03:07:24
阅读次数:
306
Given a singly linked listL:L0→L1→…→Ln-1→Ln,reorder it to:L0→Ln→L1→Ln-1→L2→Ln-2→…You must do this in-place without altering the nodes' values.For exam...
分类:
编程语言 时间:
2014-10-08 01:02:44
阅读次数:
268
Unary tags examine the state of a bean property and do not perform comparisonsagainst any other values. The body content is included if the result of ...
分类:
其他好文 时间:
2014-10-07 22:29:24
阅读次数:
399
Given a singly linked listL:L0→L1→…→Ln-1→Ln,reorder it to:L0→Ln→L1→Ln-1→L2→Ln-2→…You must do this in-place without altering the nodes' values.For exam...
分类:
其他好文 时间:
2014-10-07 17:53:53
阅读次数:
221
So far we have seen stack diagrams, which show the state of a program, and object diagrams, which show the attributes of an object and their values. T...
分类:
其他好文 时间:
2014-10-06 20:39:30
阅读次数:
117