91-9990449935 0120-4256464 |
PostgreSQL INSERT StatementIn PostgreSQL, the INSERT query is used to insert new rows into a table. You can insert a single row or multiple rows at a time into the table. Syntax: Note: column1, column2,...columnN are the names of the columns in the table into which you want to insert data. PostgreSQL Insert statement using UILet's take an example to see how to insert values in a table. Here, we have a table name "EMPLOYEES": Follow these steps to insert values in the table "EMPLOYEES":
See the output: You can see the output of the selected table by clicking on the table like structure marked in red circle. Output: PostgreSQL Insert Statement Using Query ToolOpen the query tool and execute the following query to insert multiple values in the table: See the output: You can see the output of the selected table by clicking on the table like structure marked in red circle. Output:
Next TopicPostgreSQL Select
|