Product Information > JADE External Interface Developer’s Reference > Chapter 2 - Using External Interfaces > One-to-One Relationship
One-to-One Relationship

In this example, the Account and Password classes have been included in the view. The Account class has a password property.

The SQL statements in the following example access account number 12345.

SELECT * FROM Account, Password
    WHERE Account.password = Password.oid
    AND Account.code = '12345'