方法一:
insert into table_name(col_name1, col_name2, …) values(val_1, val_2, …);
这是最常用的方法了,一次插入一条记录。
方法二:
insert into table_name1(col_name1, col_name2, …)
select col_name3, col_name4, …
from table_name2
where ….
这种方式可以一次插入多条记录。
Post a comment now »
本文目前不可评论
Sorry, the comment form is closed at this time.
No comments yet.