创建一个用户 software,然后给他分配权限,可以让 software 登录数据库、创建表、可以操作自己创建的表;回收角色,最后删除用户。
使用 system 创建 software 用户,密码设置为 system
create user software identified system;
要想让 software 登录(连接)数据库,需要给其 connect、session 权限(角色);
grant connect to software;
grant resource to software;
使用 software 用户登录
conn software/system@orcl
Software 创建一张表
create table users(id number)
删除 software 用户
drop user software [cascade]
注意:当 software 拥有自己的数据对象时,加上选项 cascade,一并把该用户拥有数据对象删除
完成一个功能,让 xiaohong 用户可以查询 scott 的 emp 表
Scott登录
conn scott/system
赋予权限
grant select[/update/delete/insert/all] on emp to xiaohong
xiaohong登录
conn xiaohong/system
小红查询 scott 的 emp 表
select * from scott.emp;
char(size)
varchar2(size)
变长,最大可存放4000个字符
nchar(size),nvarchar2(size)
n代表的意思是编码格式为Unicode编码,无论中文还是英文都用一个字符来存放数据
比如:“a”,占用一个字符,“软”,也是占用一个字符
clob(size)
变长,字符型的大对象,最大8tb
在varchar2不够用的情况下使用clob
blob(size)
变长,二进制数据,可以存放图片声音等,8tb
number(p,s)
变长,可以存放整数和小数
p表示有效位(从左开始),s表示小数位;范围:p[1,38],s[-84,127]
Number 可以表示的数值范围:-1.0e-130 ~~1.0e+126
占用机器码的空间是 1~22bytes
date
oracle dd-mm-yyyy
Sql->insert into test1(’01-1 月-14’);
timestamp(n)
邮戳的时间类型
与 date 区别,邮戳(timestamp)当某条数据更新时,使用邮戳字段也会自动更新。
通用模板:查询emp表中第4到6行数据
select t2.* from (select t1.empno,t1.ename,rownum rw from (select * from emp) t1 where rownum<=6 ) t2 where rw >=4;
请按照入职时间的先后进行排序,查询从 7 行到 10 行的雇员是谁。
select t2.* from (select t1.empno,t1.ename,rownum rw from (select * from emp order by hiredate) t1 where rownum<=10 ) t2 where rw >=7;
Union,union all,intersect,minus
Union
并集:该操作符用于取得两个结果集的并集。当使用该操作符时,会自动去掉结果集中重复的行。
Union all
该操作符不会去掉重复行,而且不排序显示,重复的内容显示 2次。
select ename,sal,job from emp where sal>2500 union all select ename,sal,job from emp where job=’MANAGER’
Intersect
该操作符用于取得两个结果集的交集
Minus
使用该操作符用于取得两个结果集的差集,它只会显示存在第 1个集合中,而不存在第二个集合中的数据。
REPLACE(‘string’,’s1’,’s2’)
string:希望被替换的字符或变量
s1:被替换的字符串
s2 :要替换的字符串
INSTR(C1,C2,I,J)
在一个字符串中搜索指定的字符,返回发现指定的字符的位置;
C1:被搜索的字符串
C2:希望搜索的字符串
I :搜索的开始位置,默认为 1
J :出现的位置,默认为 1
ASCII(s)
返回与指定的字符对应的十进制数;
CHR(number)
给出整数,返回对应的字符;
CONCAT
连接两个字符串;
INITCAP
返回字符串并将字符串的第一个字母变为大写;
SUBSTR(string,start,count)
取子字符串,从 start 开始,取 count 个
LENGTH
返回字符串的长度;
LOWER
返回字符串,并将所有的字符小写
UPPER
返回字符串,并将所有的字符大写
Rpad 和 lpad 函数
RPAD 在列的右边粘贴字符
LPAD 在列的左边粘贴字符
不够字符则用*来填满
LTRIM 和 RTRIM 函数
LTRIM 删除左边出现的字符串
RTRIM 删除右边出现的字符串
CEIL(不是四舍五入,向上取整)
返回大于或等于给出数字的最小整数
FLOOR
对给定的数字取整数
MOD(n1,n2)
返回一个 n1 除以 n2 的余数
POWER(n1,n2)
返回 n1 的 n2 次方根
ROUND 和 TRUNC
按照指定的精度进行舍入
Round 四舍五入
Trunc 截取(可以指定截取到哪 1 位,没有指定的话,则默认截取到整数)
SYSDATE
用来得到系统的当前日期
TO_DATE(string,’format’)
将字符串转化为 ORACLE 中的一个日期
TO_NUMBER
将给出的字符转换为数字
@interface
关键字进行定义。public @interface TestAnnotation {
}
@TestAnnotation
public class Test {
}
它的取值如下:
@Retention(RetentionPolicy.RUNTIME)
public @interface TestAnnotation {
}
@Inherited
@Retention(RetentionPolicy.RUNTIME)
@interface Test {}
@Test
public class A {}
public class B extends A {}
注解 Test 被 @Inherited 修饰,之后类 A 被 Test 注解,类 B 继承 A,类 B 也拥有 Test 这个注解。
可以这样理解:老子非常有钱,所以人们给他贴了一张标签叫做富豪。老子的儿子长大后,虽然别人没有给他贴标签,但是他自然也是富豪。这就是人们口中戏称的富一代,富二代,富三代。
@interface Persons {
Person[] value();
}
@Repeatable(Persons.class)
@interface Person{
String role default "";
}
@Person(role="artist")
@Person(role="coder")
@Person(role="PM")
public class SuperMan{
}
//一个人他既是程序员又是产品经理,同时他还是个画家。
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
public @interface TestAnnotation {
int id();
String msg();
}
@TestAnnotation(id=3,msg="hello annotation")
public class Test {
}
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
public @interface TestAnnotation {
public int id() default -1;
public String msg() default "Hi";
}
public @interface Check {
String value();
}
@Check("hi")
int a;
//效果等同于
@Check(value="hi")
int a;
public @interface Perform {}
@Perform
public void testMethod(){}
@SafeVarargs // Not actually safe!
static void m(List<String>... stringLists) {
Object[] array = stringLists;
List<Integer> tmpList = Arrays.asList(42);
array[0] = tmpList; // Semantically invalid, but compiles without warnings
String s = stringLists[0].get(0); // Oh no, ClassCastException at runtime!
}
public boolean isAnnotationPresent(Class<? extends Annotation> annotationClass) {}
public <A extends Annotation> A getAnnotation(Class<A> annotationClass) {}
public Annotation[] getAnnotations() {}
@TestAnnotation()
public class Test {
public static void main(String[] args) {
boolean hasAnnotation = Test.class.isAnnotationPresent(TestAnnotation.class);
if ( hasAnnotation ) {
TestAnnotation testAnnotation = Test.class.getAnnotation(TestAnnotation.class);
System.out.println("id:"+testAnnotation.id());
System.out.println("msg:"+testAnnotation.msg());
}
}
}
/*
id:-1
msg:
*/
@TestAnnotation(msg="hello")
public class Test {
@Check(value="hi")
int a;
@Perform
public void testMethod(){}
@SuppressWarnings("deprecation")
public void test1(){
Hero hero = new Hero();
hero.say();
hero.speak();
}
public static void main(String[] args) {
boolean hasAnnotation = Test.class.isAnnotationPresent(TestAnnotation.class);
if ( hasAnnotation ) {
TestAnnotation testAnnotation = Test.class.getAnnotation(TestAnnotation.class);
//获取类的注解
System.out.println("id:"+testAnnotation.id());
System.out.println("msg:"+testAnnotation.msg());
}
try {
Field a = Test.class.getDeclaredField("a");
a.setAccessible(true);
//获取一个成员变量上的注解
Check check = a.getAnnotation(Check.class);
if ( check != null ) {
System.out.println("check value:"+check.value());
}
Method testMethod = Test.class.getDeclaredMethod("testMethod");
if ( testMethod != null ) {
// 获取方法中的注解
Annotation[] ans = testMethod.getAnnotations();
for( int i = 0;i < ans.length;i++) {
System.out.println("method testMethod annotation:"+ans[i].annotationType().getSimpleName());
}
}
} catch (NoSuchFieldException e) {
// TODO Auto-generated catch block
e.printStackTrace();
System.out.println(e.getMessage());
} catch (SecurityException e) {
// TODO Auto-generated catch block
e.printStackTrace();
System.out.println(e.getMessage());
} catch (NoSuchMethodException e) {
// TODO Auto-generated catch block
e.printStackTrace();
System.out.println(e.getMessage());
}
}
}
/*
id:-1
msg:hello
check value:hi
method testMethod annotation:Perform
*/