我有 2 个如下表:
1)
Engine
======
ID Title Unit Value
123 Hello Inch 50
555 Hii feet 60
2)
Fuel
=====
ID Title Value
123 test12 343
555 test5556 777
我希望根据给定的 ID 在 2 列中选择结果(两个表中的 ID 应该相同):
标题 -- This will get the (Title + Unit) from Engine table and only
Title from Fuel table. Value
价值-- This will get Value from both tables.
ID = 123 的结果是:
Title Value
Hello(Inch) 50
test12 343
任何建议我如何在 SQL Server 2008 中得到这个。