摘要: 数据类型 类型解释 VARCHAR2(length) 字符串类型:存储可变的长度的字符串,length:是字符串的最大长度,默认不填的时候是1,最大长度不超过4000。 CHAR(length) 字符串类型:存储固定长度的字符串,length:字符串的固定长度大小,默认是1,最大长度不超过2000。 阅读全文
posted @ 2021-10-06 22:29 白_沙 阅读(190) 评论(0) 推荐(0) 编辑
摘要: Oracle-FreeIT教程 http://localhost/main.html?id=1' https://console.huaweicloud.com/ 阅读全文
posted @ 2021-10-06 21:56 白_沙 阅读(20) 评论(0) 推荐(0) 编辑
摘要: 一、创建临时表空间 create temporary tablespace temp_name tempfile 'filename' size n; 语法解析: 1、create temporary tablespace:表示创建临时表空间,tempname表示创建临时表空间的名字。 2、temp 阅读全文
posted @ 2021-10-06 21:04 白_沙 阅读(4378) 评论(0) 推荐(0) 编辑
摘要: 一、创建用户 create user user_name identified by "password"; [default tablespace ts_name] 指定用户存储的表空间(指定非默认表空间时,需要给用户分配表空间使用权限)。 [temporary tablespace tempna 阅读全文
posted @ 2021-10-06 01:03 白_沙 阅读(594) 评论(0) 推荐(0) 编辑