Differences between SQL and PL-SQL - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T12:06:51Z http://stackoverflow.com/feeds/question/290829 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/290829/differences-between-sql-and-pl-sql 1 Differences between SQL and PL-SQL askgelal 2008-11-14T17:44:39Z 2009-04-14T15:15:29Z <p>Can somebody highlight the main differences between PL-SQL and SQL? And which one do you recommend for a newbie who wants to dive into DBA?</p> http://stackoverflow.com/questions/290829/differences-between-sql-and-pl-sql/290842#290842 -1 Answer by carson for Differences between SQL and PL-SQL carson 2008-11-14T17:46:59Z 2008-11-14T17:46:59Z <p><a href="http://en.wikipedia.org/wiki/PL_SQL" rel="nofollow">PL-SQL</a> is SQL and the language that goes with it for Oracle. Start with SQL.</p> http://stackoverflow.com/questions/290829/differences-between-sql-and-pl-sql/290843#290843 0 Answer by Joel Coehoorn for Differences between SQL and PL-SQL Joel Coehoorn 2008-11-14T17:47:09Z 2008-11-14T17:47:09Z <p>pl-sql is just oracle's flavor of the language, like t-sql is for SQL Server. Every database has it's own particular dialect.</p> http://stackoverflow.com/questions/290829/differences-between-sql-and-pl-sql/290852#290852 10 Answer by Shane for Differences between SQL and PL-SQL Shane 2008-11-14T17:48:33Z 2008-11-14T17:48:33Z <p>SQL is a query language that allows you to issue a single query or execute a single insert/update/delete. PL-SQL is Oracle's "Programming Langugage" SQL, which allows you to write a full program (loops, variables, etc.) to accomplish multiple selects/inserts/updates/deletes. You should learn SQL first, then move on to PL-SQL. You will probably need both to be an Oracle DBA.</p> http://stackoverflow.com/questions/290829/differences-between-sql-and-pl-sql/290863#290863 1 Answer by R. Bemrose for Differences between SQL and PL-SQL R. Bemrose 2008-11-14T17:53:10Z 2008-11-14T17:53:10Z <p>I advise picking up ANSI/ISO SQL first. You need to know SQL before <a href="http://en.wikipedia.org/wiki/PL_SQL" rel="nofollow">PL/SQL</a> will be useful to you, as a lot of PL/SQL involves writing triggers, procedures, and functions that in turn call SQL as appropriate.</p> <p>P.S. You only need to know PL/SQL if you're going to be an Oracle DBA. ANSI/ISO SQL, however, is fairly universal. ANSI/ISO SQL is not, however, feature complete, so expect to have to pick up some additional SQL specific to the server type you use.</p> http://stackoverflow.com/questions/290829/differences-between-sql-and-pl-sql/290877#290877 2 Answer by Bernard Dy for Differences between SQL and PL-SQL Bernard Dy 2008-11-14T17:56:41Z 2008-11-28T23:12:54Z <p>SQL is used to perform operations on data. There is an ANSI standard for it. Most databases support it, although each may have differences in the interpretation, and each typically has some proprietary extensions to it.</p> <p>PL SQL is exactly as Shane described. It allows programmatic manipulation of SQL and result sets, and if you look at the Oracle PL-SQL APIs, lots of other stuff too. </p> <p>I agree again with Shane: I do not know anyone that could realistically call themselves an Oracle DBA without knowing both SQL and PL-SQL.</p> http://stackoverflow.com/questions/290829/differences-between-sql-and-pl-sql/297867#297867 1 Answer by darreljnz for Differences between SQL and PL-SQL darreljnz 2008-11-18T04:35:25Z 2008-11-18T04:35:25Z <p>I agree with Shane.</p> <p>I'll add that PLSQL is essentially a procedural programming language similar to Pascal with SQL extensions.</p> <p>Many language elements are common between SQL and PLSQL. SQL is definitely a prerequisite to learning PLSQL as it is almost (but not quite) a subset of the the PLSQL language.</p> <p>Learning SQL provides more bang for the buck since experience with ANSI SQL can be applied to many database vendors while PLSQL is specific to Oracle.</p> http://stackoverflow.com/questions/290829/differences-between-sql-and-pl-sql/354117#354117 0 Answer by David Aldridge for Differences between SQL and PL-SQL David Aldridge 2008-12-09T20:28:05Z 2008-12-09T20:28:05Z <p>SQL is the only language through which you create or modify data and structures in Oracle. Although other tools will connect with the database, they all use SQL to read and modify data.</p> <p>Oracle's PL/SQL is a programming lanuguage that extends SQL to include procedural elements, such as loops and whatnot. </p> <p>With PL/SQL alone there is little you can do -- learn SQL first, then learn PL/SQL to learn how to write effective scripts and programs.</p> http://stackoverflow.com/questions/290829/differences-between-sql-and-pl-sql/550725#550725 0 Answer by shilpi for Differences between SQL and PL-SQL shilpi 2009-02-15T11:15:35Z 2009-02-15T11:15:35Z <p>SQL is a query based language whereas pl sql is a programmong based language. unlike SQL,pl sql have the exception handling facility.</p> http://stackoverflow.com/questions/290829/differences-between-sql-and-pl-sql/606619#606619 0 Answer by juveria for Differences between SQL and PL-SQL juveria 2009-03-03T14:37:49Z 2009-03-03T14:37:49Z <p>sql is a structured query language whereas pl-sql is a combination of procedural language &amp; sql. sql is a data oriented language for selecting &amp; manipulating sets of data and pl/sql is a procedural language to create application.</p> http://stackoverflow.com/questions/290829/differences-between-sql-and-pl-sql/748075#748075 -1 Answer by seema blagun for Differences between SQL and PL-SQL seema blagun 2009-04-14T15:15:29Z 2009-04-14T15:15:29Z <p>pl/sql has a fast execution speed as compared to sql because it passes a block of statements to be executed to the server whereas in sql one statement is transfered to the server at a time.......</p>