本文目录导航:
Oracle数据库DBA面试中都会产生哪些疑问
1、组函数,2、having和where的区别,3、伪列,4、怎样成功数据分页?5、表链接6、事务(ACID)7、数据安保8、序列9、索引10、你所介入过的名目用了几个表?
oracle面试题
create table scores (id integer,score integer);1.随机生成100团体的效果beginfor i in 1 .. 100 loopinsert into scores select trunc(dbms_(0,100),0),trunc(dbms_(0,100),0) from dual;end loop;end;/2.统计出100-86为低劣、85到60为及格,59-0为不迭格的人数select (select count(*) from scores where score between 86 and 100) youxiu,(select count(*) from scores where score between 60 and 85) jige,(select count(*) from scores where score between 0 and 59) bujige from dual;
oracle面试问哪些疑问
1、update 表 set 年龄-1 where 年龄>=122、order by 某一列 asc、order by 某一列 desc3、没写条件,会所有删除,除非没有commit。4、group by
面试要是问到 知晓Oracle或SQL Server等大型数据库开发会问道哪些疑问
假设是开发的话,那还是基于SQL这种言语的语法了,要多自己经常使用能力相熟的。
关于oracle数据库来说,PL/SQL delelopment是重点,除了SQL,还要了解触发器trigger,存储环节procedure,义务job,视图view等等。