alter table add 和insert into
时间: 2023-04-11 09:01:54 浏览: 114
alter table test rename test1; --修改表名alter table test add colum
这是两个 SQL 语句,用于修改和插入数据表中的数据。alter table add 用于向数据表中添加新的列,而 insert into 则用于向数据表中插入新的行。例如,如果我们要向一个名为 students 的数据表中添加一个新的列,可以使用以下 SQL 语句:alter table students add column age int; 如果我们要向该数据表中插入一条新的记录,可以使用以下 SQL 语句:insert into students (name, age, gender) values ('Tom', 18, 'male');
阅读全文