在ACCESS数据库中,怎样把一个表的某些字段的某些记录复制到另一个表
发布网友
发布时间:2022-04-23 04:21
我来回答
共3个回答
热心网友
时间:2022-04-15 03:25
select
*
into
newtable
from
table
where
字段
like
'%中%'
或如果另一张表已经存在,则用下面的:
insert
into
newtable
select
*
from
table
where
字段
like
'%中%'
如果上面的话,要注意字段是否一样多,或字段类型是否一致的问题.
热心网友
时间:2022-04-15 04:43
select
字段1,字段2
into
newtable
from
table
或如果另一张表已经存在,则用下面的:insert
into
newtable
select
字段1,字段2
from
table
如果上面的话,要注意字段是否一样多,或字段类型是否一致的问题.
热心网友
时间:2022-04-15 06:18
麻烦了
select
*
from
table
where
想要查找的字段
like
'%中%'
然后选择粘贴数据