数据库
yzx会游泳的鱼
这个作者很懒,什么都没留下…
展开
-
oracle学习--基本语法
1,大小写转换 select upper('Hello') 转大写,lower('Hello') 转小写,initcap('hello') 首字母大写 from dual; 2,截取字符串 --从第二位开始取 select substr('hello',2) from dual; --ello --从第二位开始取3位 select substr('hello',2,3) from dual; -...原创 2019-08-27 16:20:46 · 339 阅读 · 1 评论 -
数据库---oracle学习
1,忘记密码sqlplus登录 /as sysdba登录默认用户 2,创建用户 create user test identified by test; 3,修改用户密码 alter user test identified by 123456; 4,创建表空间 create tablespace mytest datafile 'd:\myoracle\mytest.dbf' siz...原创 2019-07-11 09:36:50 · 148 阅读 · 1 评论 -
MySql学习笔记一
1,安装卸载略 2,在cmd中连接mysql #[]内可以忽略,123456为用户密码 mysql [-hlocalhost -P3306] -u root -p 或mysql [-hlocalhost -P3306] -u root -p123456 exit 或Ctrl+C 退出 查看有哪些库:show databases; 进入库:use test; 查看当前所在库:select dat...原创 2020-04-20 07:02:11 · 215 阅读 · 1 评论