i want to say
select col1,col2,col3
from table1
inner join table2 on table1.col1=table2.col1
and ..... ( ? )
? : i want just 1 record or first record from table1 joined with first record from table2. but the command cause all record joined that can be join. for example if 2 records are in the table1 that col1=1432 and just 1 record in table2 exists that col1=1432 command joined all. but i want to join just first from table1 with first from table2
i want to display all record that are more than 1 record to be join.