Joins that include all rows, regardless of whether there is a matching row, are called outer joins.
select * from titles, titleauthor where titles.title_id *= titleauthor.title_id
SAP supports both Transact-SQL and ANSI outer joins. Transact-SQL outer joins use the *= command to indicate a left outer join and the =* command to indicate a right outer join. Transact-SQL outer joins were created by SAP as part of the Transact-SQL language.
select * from titles left join titleauthor on titles.title_id = titleauthor.title_id