MySQL中insert into语句的基本用法
MySQL是一种常用的关系型数据库管理系统,它提供了丰富的SQL语句用于数据的查询和操作。其中,insert into语句用于向表中插入新的数据。下面将介绍MySQL中insert into语句的基本用法,并提供具体的代码示例。
-
插入完整数据
假设我们有一个学生表(student),包含学生的学号(id)、姓名(name)和年龄(age)三个字段。要向该表中插入一条完整的学生数据,可以使用如下的insert into语句:insert into student(id, name, age) values (1, \'张三\', 18);