摘要: 一、表名和列名的命名规则 1)、必须以字母开头 2)、长度不能超过30个字符 3)、不能使用oracle的保留字 4)、只能使用如下字符 a-z,a-z,0-9,$,#等 二、数据类型 1)、字符类 char 长度固定,最多容纳2000个字符。 例子:char(10) ‘小韩’前四个字符放‘小韩’, 阅读全文
posted @ 2019-04-11 23:09 狂奔~ 阅读(185) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/chengxiao/p/5904783.html 一、什么是Oracle数据库? 众所周知,Oracle DataBase是一款关系型数据库管理系统(不了解何谓关系型数据库的童鞋自行google,baidu),同类的产品还有mySql,sqlServe 阅读全文
posted @ 2019-04-11 18:16 狂奔~ 阅读(283) 评论(0) 推荐(0) 编辑
摘要: var v = 123; function foo(){ var v = 456; function inner(){ console.log(v) } return inner } result = foo() console.log(result()) # 问输出结果://456 Name='root'; Age = 18; funct... 阅读全文
posted @ 2019-04-11 15:01 狂奔~ 阅读(85) 评论(0) 推荐(0) 编辑
摘要: 参考博客:http://www.cnblogs.com/wupeiqi/articles/6216618.html 一、字段 AutoField(Field) - int自增列,必须填入参数 primary_key=True BigAutoField(AutoField) - bigint自增列,必 阅读全文
posted @ 2019-04-11 14:22 狂奔~ 阅读(255) 评论(0) 推荐(0) 编辑
摘要: http://www.hechaku.com/Oracle/ 阅读全文
posted @ 2019-04-11 12:34 狂奔~ 阅读(114) 评论(0) 推荐(0) 编辑