2

In Powerbuilder datawindow I a select query contains:

(~"abc~".~"year~" = ~"xyz~".~"year~" ) and  
( ~"abc~".~"number~" *= ~"xyz~".~"number~" )

I understand the equal operator is used in first line, but what does *= mean? Thanks.

Hugh Brackett
  • 2,706
  • 14
  • 21
Billa
  • 1,963
  • 5
  • 18
  • 23
  • 1
    In SQL Server `*=` is an outer join. Could be the case in SQL Anywhere as well. –  Nov 30 '11 at 08:00

1 Answers1

4

Its an Outer join, Check the section "Join syntax and join processing" in this Documentation

CloudyMarble
  • 36,908
  • 70
  • 97
  • 130