rows 2c insert into 2c returning with alias

Solutions on MaxInterview for rows 2c insert into 2c returning with alias by the best coders in the world

showing results for - "rows 2c insert into 2c returning with alias"
Alonso
23 Feb 2018
1INSERT INTO table_name(column1, column2, …)
2VALUES (value1, value2, …)
3RETURNING output_expression AS output_name;
4
5
6Code language: SQL (Structured Query Language) (sql)
similar questions