Here are steps to achieve the use case of implementing a Left Single Match Join in the Information Designer:
1. Create a Left Outer Join by clicking on the "Create Join" link in the "Start" tab of Information Designer, then add the columns that should be included in the join under "Join Columns" section of "Join" Tab (in this example, col1 from Table "A" and col1 from Table "B").
2. Create an Information Link by clicking on the "Create Information Link" button in the "Start" tab of Information Designer, add the columns to be included in the Information Link (col1 and col2 from Table "A", and col3 from Table "B"), and add the Join Element created in step 1, using the "Join Path" section of the "Information Link" Tab.
3. Now Edit the SQL that the current Information Link is generating and replace it with the below example query (ensure you update the example query to match your particular data source).
Modified Query:
select a.col1, a.col2, tb.col3 FROM
"sp70db1"."dbo"."A" a
LEFT OUTER JOIN
( select col1 as colb1, col3 from
(
select * , row_number() over (partition by col1 order by col1) row
from "sp70db1"."dbo"."B" B
) as aa
where row = 1) as tB
on a.col1 = tb.colb1;