About Me
Welcome to My Website Introduce your brand’s mission or core value statement.
Innovative Solutions for Modern Challenges Use this space to welcome visitors with a brief introduction that highlights the core message of your site.
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