约 51,900 个结果
在新选项卡中打开链接
  1. PL/SQL Tutorial

    PL/SQL Tutorial PL/SQL, which stands for Procedural Language extensions to the Structured Query Language (SQL). It is a combination of SQL along with the procedural features of programming languages. It was developed by Oracle Corporation in the early 90's to enhance the capabilities of SQL. PL/SQL is one of three key programming languages embedded in the …

  2. PL/SQL - Object Oriented - Online Tutorials Library

    In this chapter, we will discuss Object-Oriented PL/SQL. PL/SQL allows defining an object type, which helps in designing object-oriented database in Oracle. An object type allows you to create composite types. Using objects allow you to implement real world objects with specific structure of data and methods for operating it. Objects have attributes and methods. Attributes are …

  3. PL/SQL - Basic Syntax - Online Tutorials Library

    Learn the essential PL/SQL basic syntax including variables, data types, and control structures to enhance your programming skills.

  4. PL/SQL - Transactions - Online Tutorials Library

    In this chapter, we will discuss the transactions in PL/SQL. A database transaction is an atomic unit of work that may consist of one or more related SQL statements. It is called atomic because the database modifications brought about by the SQL statements that constitute a transaction can collectively be either committed, i.e., made permanent to the database or rolled back (undone) …

  5. PL/SQL - Overview - Online Tutorials Library

    The PL/SQL programming language was developed by Oracle Corporation in the late 1980s as procedural extension language for SQL and the Oracle relational database. Following are certain notable facts about PL/SQL − PL/SQL is a completely portable, high-performance transaction-processing language. PL/SQL provides a built-in, interpreted and OS independent …

  6. Oracle PL/SQL Online Training Course

    Oracle PL/SQL Training Course is a comprehensive guide designed for learners who want to learn how to develop PL/SQL programs and Become Oracle Developer/DBA.

    • 评论数: 254
    • Difference between SQL and PL/SQL - Online Tutorials Library

      2019年11月27日 · SQL, Structural Query Language is a standard database language which is used create, maintain and retrieve the relational database whereas PL/SQL, Procedural Language extension to SQL, it extends SQL and provide it procedural capabilities. Following are the important differences between SQL and PL/SQL.

    • PL/SQL - Collections

      In this chapter, we will discuss the Collections in PL/SQL. A collection is an ordered group of elements having the same data type. Each element is identified by a unique subscript that represents its position in the collection. PL/SQL provides three collection types − Index-by tables or Associative array Nested table Variable-size array or Varray Oracle documentation provides …

    • PL/SQL - Procedures - Online Tutorials Library

      In this chapter, we will discuss Procedures in PL/SQL. A subprogram is a program unit/module that performs a particular task. These subprograms are combined to form larger programs. This is basically called the 'Modular design'. A subprogram can be invoked by another subprogram or program which is called the calling program. A subprogram can be created − At the schema …

    • PL/SQL - IF-THEN-ELSIF Statement - Online Tutorials Library

      The IF-THEN-ELSIF statement allows you to choose between several alternatives. An IF-THEN statement can be followed by an optional ELSIF...ELSE statement. The ELSIF clause lets you add additional conditions.