1

我有一个庞大的数据库(超过 200 个表),需要将数据从不同的表中提取到新的表中。我还使用值对一些数据进行硬编码,因为它们没有存储在数据库中。

我理解非常简单的 SQL,但是我正在为更高级的东西而苦苦挣扎。通过研究,我发现它最有可能与 join 命令一起使用,但是经过几次尝试后我没有成功。

我希望有人能指出我正确的方向来扩展我的研究,或者如果加入不正确,让我走上正确的轨道。不要求为我做这件事只是一些指示,因为我觉得我所尝试的一切都失败了。

一个简短的例子也可能会有所帮助。

4

1 回答 1

2

You are going to need a JOIN if the data can join together, or a union if the data is in similar data in different tables. It will be very hard to help without at least some better ideas of what you're trying to do. Could you maybe provide some example data? Make sure to scrub the data before posting it online.

A great place to learn: http://www.w3schools.com/sql/sql_join.asp

于 2013-07-08T14:26:01.543 回答