Category Archives: postgresql

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

PostgreSQL – CONSTRAINTS Constraints are the rules enforced on data columns on table. These are used to prevent invalid data from being entered into the database. This ensures the accuracy and reliability of the data in the database. Constraints could be column level or table level. Column level constraints are applied only to one column […]

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

PostgreSQL – UNIONS Clause The PostgreSQL UNION clause/operator is used to combine the results of two or more SELECT statements without returning any duplicate rows. To use UNION, each SELECT must have the same number of columns selected, the same number of column expressions, the same data type, and have them in the same order […]