Programming Blog

This blog is about technical and programming questions and there solutions. I also cover programs that were asked in various interviews, it will help you to crack the coding round of various interviews

Showing posts with label PL SQL. Show all posts
Showing posts with label PL SQL. Show all posts

Sunday 25 March 2018

Prime PLSQL

March 25, 2018
This program will print prime numbers in the given range. the range is given by the user.            DECLARE     i number(3);     j ...

Sunday 18 March 2018

Friday 16 March 2018

Wednesday 14 March 2018

Tuesday 13 March 2018

Monday 12 March 2018

FACTORIAL PLSQL

March 12, 2018
PL/SQL code to find factorial of a number entered by user   DECLARE     num number;     factorial number;       FUNCTION fact(x number...

Sunday 11 March 2018

PL/SQL Arrays

March 11, 2018
Declaration In PL/SQL arrays are denoted as VARRAY, which can store a fixed sized sequential characters as per the defined type and rang...

Tuesday 6 March 2018