Category Archives: plsql

Khóa học miễn phí PL/SQL – Packages nhận dự án làm có lương

PL/SQL – Packages In this chapter, we will discuss the Packages in PL/SQL. Packages are schema objects that groups logically related PL/SQL types, variables, and subprograms. A package will have two mandatory parts − Package specification Package body or definition Package Specification The specification is the interface to the package. It just DECLARES the types, […]

Khóa học miễn phí PL/SQL – Collections nhận dự án làm có lương

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 […]

Khóa học miễn phí PL/SQL – Transactions nhận dự án làm có lương

PL/SQL – Transactions 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, […]