Siva Academy
Pages
(Move to ...)
Home
SQL PLSQL Interview Questions
PLSQL Scenario based Interview Questions
▼
Tuesday, August 11, 2020
SQL to count number of vowels
›
SQL to count number of occurrences of a vowels create table emp(empno number,ename varchar2(100)); WITH ds AS ( SELECT empno, ...
9 comments:
Friday, July 10, 2020
sql to summarize data
›
drop table t; create table t(d date, v varchar2(1)); insert into t values ( sysdate+1, 'A'); insert into t values ( sysdate+2, '...
1 comment:
Monday, June 22, 2020
SQL to find max value across row and column
›
SQL to find max value across row and column drop table t; create table t(c1 number, c2 number, c3 number); ...
3 comments:
Thursday, June 11, 2020
SQL Group employees into teams
›
create table team(ename varchar2(30), city varchar2(100)); insert into team values('Veda','Pune'); insert into team values(...
Saturday, June 6, 2020
Hierarchical EMP data in Flat format
›
Oracle SQL Practical question Emp Hiearchical data in Flat format ...
Monday, April 6, 2020
Delete duplicate records in SQL
›
drop table emp_t; create table emp_t(empno number,ename varchar2(100), job varchar2(100), sal number, deptno NUMBER); insert into emp_...
1 comment:
Friday, March 20, 2020
oracle compound trigger to avoid mutating trigger
›
drop trigger trig_validate_sal; drop trigger trig_before_up_sal; drop trigger comp_tr_log_changes; drop package pkg1; drop table emp_...
›
Home
View web version