what is the statement for inserting a new record into the table
Answers
Answered by
0
Answer: IN Simple Terms ,
the insert into statement is used to insert new records in a table.
Explanation:
To insert records into a table, enter the key words insert into followed by the table name, followed by an open parenthesis, followed by a list of column names separated by commas, followed by a closing parenthesis, followed by the keyword values, followed by the list of values enclosed in parenthesis.
Answered by
1
Answer:
INSERT INTO ('Table name') VALUES(‘Jimmy’, ‘Jackson’);
Similar questions