由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Database版 - Access 里面两个 column不一样的table 能combine 到一起吗?
相关主题
SQL copy a table into a new table and add a new column请问sql 有条件性的select columns
菜鸟问题,急SQL select one value column for each distinct value another (转载)
sort two same tables SQL but different resultsSQL question: update a field
请教一个sql问题高手请进
sql 请教请教一个SQL的问题
SQL combine two tables into one table and add a new column新手请教SQL 语法问题- alias 和 join
请教一个SQL Server的面试题SQL combine two columns from two different tables no shared (转载)
How to split a column into several rows?mysql 问题 (转载)
相关话题的讨论汇总
话题: table话题: column话题: access话题: combine话题: table1
进入Database版参与讨论
1 (共1页)
m******1
发帖数: 98
1
不好意思,又要麻烦大家了。
我有两个ACCESS Table,
Table1, 有190 patients, 有20个column.
Table 2, 有90 patients, 有 10个column.
这些column里面 有些一样,有些不一样。 patients 也是有几个重复。
想问问这种情况下能不能把两个table 合并到一起呢?
一个朋友说,是不可能并到一个的。用Query也不行。
谢谢!
B*****g
发帖数: 34098
2
叫你朋友参加CINAOUG 9月7号的活动
table1(id, col1)
table2(id, col2)
SELECT id, col1, null AS col2
from table1
union all
SELECT ID, null, col2
from table2

【在 m******1 的大作中提到】
: 不好意思,又要麻烦大家了。
: 我有两个ACCESS Table,
: Table1, 有190 patients, 有20个column.
: Table 2, 有90 patients, 有 10个column.
: 这些column里面 有些一样,有些不一样。 patients 也是有几个重复。
: 想问问这种情况下能不能把两个table 合并到一起呢?
: 一个朋友说,是不可能并到一个的。用Query也不行。
: 谢谢!

m******1
发帖数: 98
3
一定,他还是搞IT的,今天信誓旦旦的说不行。。。
m******1
发帖数: 98
4
有没有什么书,教程推荐的吗? 我得好好学习一下,不能天天上来问啊。
谢谢。
B*****g
发帖数: 34098
5
如果你想开始学习oracle,要参加CINAOUG 9月7号的讲座,当然其实就是8月讲座的,
很多人错过要求再讲。

【在 m******1 的大作中提到】
: 有没有什么书,教程推荐的吗? 我得好好学习一下,不能天天上来问啊。
: 谢谢。

g***l
发帖数: 18555
6
JOIN有1对1,1对多,多对多,你的两个TABLE是什么情况,COMBINE是要JOIN的,靠什
么JOIN,怎么JION,结果是不一样的。
1 (共1页)
进入Database版参与讨论
相关主题
mysql 问题 (转载)sql 请教
请问这个query怎么做SQL combine two tables into one table and add a new column
how to write this query请教一个SQL Server的面试题
在没有Key的情况下,怎么update一个table的内容到另一个table?How to split a column into several rows?
SQL copy a table into a new table and add a new column请问sql 有条件性的select columns
菜鸟问题,急SQL select one value column for each distinct value another (转载)
sort two same tables SQL but different resultsSQL question: update a field
请教一个sql问题高手请进
相关话题的讨论汇总
话题: table话题: column话题: access话题: combine话题: table1