我在同一个数据库中有两个表:hlstats_Events_Connects 和 hlstats_PlayerUniqueIds。
在 hlstats_Events_Connects 中,我有一个我希望获得的值,但是与它相关的 ID 我需要使用我拥有的“uniqueId”从另一个表中的数据中获取。例子:
**hlstats_Events_Connects**
playerId eventTime
----------------------
8 2013-04-05 05:44:14
**hlstats_PlayerUniqueIds**
playerId uniqueId
---------------------
8 0:0:84901
所以我将“uniqueId”作为变量,我想说的是,获取人员 uniqueId 的 playerId,然后从 playerId 中获取 eventTime。目前我有一些类似下面的内容,但无法弄清楚 Where 子句。
SELECT c.eventTime, c.playerId, u.uniqueId, u.playerId
FROM c.hlstats_Events_Connects, u.hlstats_PlayerUniqueIds
WHERE ...?
干杯