I have two tables
Table FOO
FooUniqueID| Year| Name| Worth|
---------------------------
1 2008 Bob 23.00
2 2009 Bob 40200
Table Bar
BarUniqueID | Name | Value
-----------------------
1aBc Year 2009
I would like to create a view. That will select everything from FOO where the Year is equal
select value from Bar where name = year
without using a sub query.
thank you