select * into newtable from table where 字段 like '%中%'
或如果另一张表已经存在,则用下面的:
insert into newtable
select * from table where 字段 like '%中%'
如果上面的话,要注意字段是否一样多,或字段类型是否一致的问题.
select 字段1,字段2 into newtable from table 或如果另一张表已经存在,则用下面的:insert into newtable select 字段1,字段2 from table 如果上面的话,要注意字段是否一样多,或字段类型是否一致的问题.
麻烦了
select * from table where 想要查找的字段 like '%中%'
然后选择粘贴数据