插入 insert into 目标表➕字段 select ➕字段 from 源表 例:在学生信息表里插入test的字段,注意:源表字段和目标表字段相同
2.替换 replace into 表名➕values➕字段 例
3.更新update ,set为修改的位置,set name=444为修改test里字段name为444,where name ='333'意为将test表中的名字'333'修改为444
4.delete 删除 删除test中字段'444'行列
插入 insert into 目标表➕字段 select ➕字段 from 源表 例:在学生信息表里插入test的字段,注意:源表字段和目标表字段相同
2.替换 replace into 表名➕values➕字段 例
3.更新update ,set为修改的位置,set name=444为修改test里字段name为444,where name ='333'意为将test表中的名字'333'修改为444
4.delete 删除 删除test中字段'444'行列