Write an inner join between two tables.
Anonymous
MS-SQL lets assume two tables - City and State each having common column called population here is the join on population field Select * from City Inner join State ON city.population = state.population Done :-)
Check out your Company Bowl for anonymous work chats.