32

I want to execute programs of PL/SQL on-line for practice. Can any one suggest me any websites which will compile and run the code and show the result? Thank you.

Praneeth
  • 3
  • 2
Learner
  • 1,544
  • 8
  • 29
  • 55

2 Answers2

25

SQL Fiddle

Here is a trivial example of use:

http://sqlfiddle.com/#!4/8cf15/5

Burhan Ali
  • 2,258
  • 1
  • 28
  • 38
17

Below are some of the online websites that can help in executing Oracle SQL queries and PL/SQL Code -

  • Oracle Live Sql - All your PL/SQL scripts can be saved

  • Sql Fiddle - Easily create schemas and queries and share them with others.

  • Oracle Apex -Test out Apex, which also lets you create objects and run scripts.

  • Sql Zoo - Interactive SQL tutorial. PL/SQL coding ground- create objects and run scripts

  • Tutorials Point- create objects and run scripts

    In coding ground you can execute .sql scripts by using below steps.

    1.Click on new project.

    2.Click on '+' symbol. -- A new .sql file will be created (Newfile.sql)

    3.Execute the .sql as @filename.sql (Ex : @Newfile.sql )

mahi_0707
  • 1,030
  • 9
  • 17