insert into emp values
时间: 2023-10-08 11:10:10 浏览: 104
Sorry, as an AI language model, I do not have access to any specific database or table to execute the SQL query. However, I can provide you with a general syntax for the INSERT INTO statement in SQL:
Syntax:
INSERT INTO table_name (column1, column2, column3,...columnN)
VALUES (value1, value2, value3,...valueN);
Example:
If you have a table named "employees" with columns "emp_id", "emp_name", "emp_age", and "emp_salary", the INSERT INTO statement to add a new record would look something like this:
INSERT INTO employees (emp_id, emp_name, emp_age, emp_salary)
VALUES (101, 'John Doe', 28, 50000);
This command will insert a new record with emp_id=101, emp_name='John Doe', emp_age=28, and emp_salary=50000 into the employees table.
阅读全文