Most join conditions are based on equality, and so are called equijoins. For example:
SELECT * FROM Departments JOIN Employees ON Departments.DepartmentID = Employees.DepartmentID; |
However, you do not have to use equality (=) in a join condition. You can use any search condition, such as conditions containing LIKE, SOUNDEX, BETWEEN, > (greater than), and != (not equal to).
![]() |
Discuter à propos de cette page dans DocCommentXchange.
|
Copyright © 2013, SAP AG ou société affiliée SAP - SAP Sybase SQL Anywhere 16.0 |