ACCESS要怎么样才能把查询表里的结果另存为一个数据表?

来源:百度知道 编辑:UC知道 时间:2024/06/06 04:29:25

你试试看!

create table test_table_1
(
id int
)

然后插入数据

insert into test_table_1 values(1)

insert into test_table_1 values(2)

这样数据库里面就有两条数据了!

然后你再运行:
create table test_table_2
(
id int
)

再执行:

insert into test_table_2 select id from test_table_1

ok了!

共同学习!