1 表和列的命名规则
 a. 必须以字母开头
 b. 长度不能超过30个字符
 c. 不能使用Oracle的保留字(关键字)
 d. 只能使用如下字符A-Z,a-z,0-9,$,#
2 创建表
 语法:create table 表名 (列名 数据类型,列名 数据类型,...)
 SQL> create table Student (StuNo number(10),Gender ch...
                            
                            
                                分类:
其他好文   时间:
2014-05-09 02:31:05   
                                阅读次数:
262
                             
                    
                        
                            
                            
                                data segment
    string1 db 'Please input a number:',0dh,0ah,'$'
    string2 db 0dh,0ah,'It is a number!',0dh,0ah,'$'
    string3 db 0dh,0ah,'It is not a number!',0dh,0ah,'$'
data ends
code segment
  ...
                            
                            
                                分类:
其他好文   时间:
2014-05-09 01:34:35   
                                阅读次数:
350
                             
                    
                        
                            
                            
                                参考文档:http://blog.csdn.net/xiaodan007/article/details/7096718function sz_T2S(_t) 
local szRet = "{" function doT2S(_i, _v) if "number" == t...
                            
                            
                                分类:
其他好文   时间:
2014-05-08 22:47:29   
                                阅读次数:
347
                             
                    
                        
                            
                            
                                function OnFirstUIAfter() STRING szTitle, 
szMsg1, szMsg2, szOpt1, szOpt2; NUMBER bOpt1, 
bOpt2;begin	Disable(STATUSEX);	bOpt1 = FALSE; bOpt2...
                            
                            
                                分类:
其他好文   时间:
2014-05-08 22:40:38   
                                阅读次数:
675
                             
                    
                        
                            
                            
                                划分树模板题,敲上模板就ok了。
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#define MP make_pair
#define LL long long
#define CLR(a, b) memset(a, b, sizeof(a))
using n...
                            
                            
                                分类:
其他好文   时间:
2014-05-08 17:29:39   
                                阅读次数:
398
                             
                    
                        
                            
                            
                                使用VLD测有没内存泄露的时候,出现(File and line number not available): (Function name unavailable)
查看VS控制台,发现
已加载“C:/WINDOWS/system32/dbghelp.dll” 
说明VS加载了WINDOWS的dll而不是最新的VLD的dbghelp.dll
解决方案:
只需把VLD 安装路径下...
                            
                            
                                分类:
其他好文   时间:
2014-05-08 15:41:04   
                                阅读次数:
354
                             
                    
                        
                            
                            
                                Single Number
 Total Accepted: 19800 Total
 Submissions: 44027My Submissions
Given an array of integers, every element appears twice except for one. Find that single one.
Note:
Your algor...
                            
                            
                                分类:
其他好文   时间:
2014-05-08 11:01:40   
                                阅读次数:
298
                             
                    
                        
                            
                            
                                2.3.3计算阶乘实例2 的阶乘结果是: {{factorial.result}} 
同样是这个例子:result的改变,本质上是由于number的改变,而不是input的value值改变,number的改变有可能是input的va...
                            
                            
                                分类:
其他好文   时间:
2014-05-08 10:20:00   
                                阅读次数:
371
                             
                    
                        
                            
                            
                                Given an array of integers, find two numbers 
such that they add up to a specific target number.The function twoSum should 
return indices of the two nu...
                            
                            
                                分类:
其他好文   时间:
2014-05-08 06:33:29   
                                阅读次数:
339
                             
                    
                        
                            
                            
                                K-th NumberTime Limit:20000MSMemory 
Limit:65536KTotal Submissions:35653Accepted:11382Case Time 
Limit:2000MSDescriptionYou are working for Macrohard co...
                            
                            
                                分类:
其他好文   时间:
2014-05-08 05:24:50   
                                阅读次数:
387