Home » Oracle » Oracle Sql » Page 3

Oracle Sql

Sql  stands for Structured Query Language. is the language to communicate with  the rdbms.  plsql is the programming part of sql

Oracle sql and plsql are the languages which are widely used. They are easy to learn and apply. Here I would be listing out all the articles on Oracle sql and plsql

I am starting the basics so it is very helpful for the beginners to run sql and plsql here

 

Sequence in Oracle: Use, Modify, Reset, Drop

What is Sequence in Oracle? Creating a sequence is done using the CREATE SEQUENCE   [START WITH] [INCREMENT BY] [NO/MINVALUE] [NO/MAXVALUE] [NO/CYCLE] [NO/CACHE]; Description of each value Examples create sequence test_tech start with 1increment by 1maxvalue 10000cyclecache 20;Orcreate sequence test_tech1start with 1increment by 1maxvalue 4500000cyclenocache; How to use sequences To use sequence simply use the …

Sequence in Oracle: Use, Modify, Reset, Drop Read More »

How to use Analytic functions in oracle (Over Partition by Keyword)

This post is part of Oracle SQL tutorial and we would be discussing Analytic functions in oracle(Over by partition) with examples, detailed explanation . Analytic functions in oracle We have already studied about Oracle Aggregate function like avg ,sum ,count. Lets take an example First lets create the sample data CREATE TABLE “DEPT” ( “DEPTNO” …

How to use Analytic functions in oracle (Over Partition by Keyword) Read More »

Scroll to Top