Category Archives: postgresql

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

PostgreSQL – Schema A schema is a named collection of tables. A schema can also contain views, indexes, sequences, data types, operators, and functions. Schemas are analogous to directories at the operating system level, except that schemas cannot be nested. PostgreSQL statement CREATE SCHEMA creates a schema. Syntax The basic syntax of CREATE SCHEMA is […]

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

PostgreSQL – SELECT Query PostgreSQL SELECT statement is used to fetch the data from a database table, which returns data in the form of result table. These result tables are called result-sets. Syntax The basic syntax of SELECT statement is as follows − SELECT column1, column2, columnN FROM table_name; Here, column1, column2…are the fields of […]

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

PostgreSQL – INSERT Query The PostgreSQL INSERT INTO statement allows one to insert new rows into a table. One can insert a single row at a time or several rows as a result of a query. Syntax Basic syntax of INSERT INTO statement is as follows − INSERT INTO TABLE_NAME (column1, column2, column3,…columnN) VALUES (value1, […]