在ACCESS数据库中,怎样把一个表的某些字段的某些记录复制到另一个表

2025-02-24 14:41:15
推荐回答(3个)
回答1:

select * into newtable from table where 字段 like '%中%'
或如果另一张表已经存在,则用下面的:
insert into newtable
select * from table where 字段 like '%中%'
如果上面的话,要注意字段是否一样多,或字段类型是否一致的问题.

回答2:

select 字段1,字段2 into newtable from table 或如果另一张表已经存在,则用下面的:insert into newtable select 字段1,字段2 from table 如果上面的话,要注意字段是否一样多,或字段类型是否一致的问题.

回答3:

麻烦了
select * from table where 想要查找的字段 like '%中%'
然后选择粘贴数据