摘要:
select * from scott.dept;select * from scott.emp; --dual 是 Oracle提供的一个虚表select length('hello') from dual; --常用函数--lower把大写转小写 upper把小写转大写select * from 阅读全文
摘要:
--以scott用户下的dept和emp表为例 --注意:如果scott用户不能使用,请使用system用户登录--解锁scott用户ALTER USER SCOTT ACCOUNT UNLOCK;--重新设置密码 (identified 被识别的)alter user scott identifi 阅读全文