摘要: oracle常用函数1,字符串函数 upper(str) 将输入的字符串变为大写返回 lower(str) 小写 initcap(str) 首字母大写 length(str) 字符串长度 substr(列名,开始点,结束点) 字符串截取 replace(列名,原始值,替换值) 字符串替换2,数学函数 阅读全文
posted @ 2019-02-15 20:04 Nausicaa0505 阅读(152) 评论(0) 推荐(0) 编辑
摘要: 建表 create table A (col1 type1 [not null] [primary key],col2 type2 [not null],..) create table A ( firstname varchar(20), lastname varchar(20), primary 阅读全文
posted @ 2019-02-15 19:53 Nausicaa0505 阅读(103) 评论(0) 推荐(0) 编辑