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 SQL. Show all posts
Showing posts with label SQL. Show all posts

Saturday, 18 August 2018

Wednesday, 20 June 2018

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

Thursday, 15 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...

Thursday, 8 March 2018

Tuesday, 6 March 2018

Monday, 8 January 2018

Thursday, 10 November 2016

Basic PL/SQL programs

November 10, 2016
                Some Basic PL/SQL programs                                             Print your name using PL SQL block.  Declare mes...