Category Archives: postgresql

Khóa học miễn phí PostgreSQL – Locks nhận dự án làm có lương

PostgreSQL – LOCKS Locks or Exclusive Locks or Write Locks prevent users from modifying a row or an entire table. Rows modified by UPDATE and DELETE are then exclusively locked automatically for the duration of the transaction. This prevents other users from changing the row until the transaction is either committed or rolled back. The […]

Khóa học miễn phí PostgreSQL – Auto Increment nhận dự án làm có lương

PostgreSQL – AUTO INCREMENT PostgreSQL has the data types smallserial, serial and bigserial; these are not true types, but merely a notational convenience for creating unique identifier columns. These are similar to AUTO_INCREMENT property supported by some other databases. If you wish a serial column to have a unique constraint or be a primary key, […]