Inserting data in Amazon Redshift Serverless

Insert Data into a Row

The SQL INSERT INTO Statement 

The INSERT INTO statement is used to insert new records in a table. 

INSERT INTO Syntax 

INSERT INTO table_name (column1, column2, column3, …) 
VALUES (value1, value2, value3, …); 

INSERT INTO  Student(Name, Age,Sex) 
VALUES (David, 20, ‘Male’); 

To check the inserted Data

Select * from Student

Leave a Comment

Your email address will not be published. Required fields are marked *

Scroll to Top