Home >Database >Mysql Tutorial >oracle11g 学习笔记(待更新。。。)

oracle11g 学习笔记(待更新。。。)

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-06-07 15:20:27970browse

数据类型 char(n) 定义字符 长度N 如果数据的字节数小于N,空格填充!读取时 需用 trim() 过滤首尾字符 不好用! varchar2(n) 最大字节4000。常用类型。 问:长篇文章怎么办。。。。 long pass data 例子:insert into users values('xx',to_data('2012-10-1

数据类型

 char(n) 定义字符 长度N 如果数据的字节数小于N,空格填充!读取时 需用 trim() 过滤首尾字符 不好用!

varchar2(n) 最大字节4000。常用类型。问:长篇文章怎么办。。。。

long  pass

data 例子:insert into users values('xx',to_data('2012-10-16','yyyy-mm-dd'));

                   select name,to_char(birth,'yyyy-mm-dd day hh24:mi:ss') from users ;

 

 


左外联接 右外联接

例子 select ******* where a.id = b.id(+);右外联接

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn