向表中自动插入新的一行SQL
时间: 2023-09-13 10:09:46 浏览: 44
Sure, here's an example SQL statement to insert a new row into a table:
```sql
INSERT INTO table_name (column1, column2, column3)
VALUES (value1, value2, value3);
```
Replace `table_name` with the name of your table, and `column1`, `column2`, `column3` with the names of the columns you want to insert data into. Similarly, replace `value1`, `value2`, `value3` with the actual values you want to insert for each column.
Let me know if you need any further assistance!
阅读全文