0:00 The last operator that I'm 0:01 going to cover in this video is the theta join operator. 0:04 Like natural join, theta join is 0:05 actually an abbreviation that doesn't add expressive power to the language. 0:09 Let me just write it. 0:10 The theta join operator takes 0:11 two expressions and combines them 0:13 with the bow tie looking 0:16 operator, but with a subscript theta. 0:18 That theta is a condition. 0:20 It's a condition in the style 0:21 of the condition in the selection operator. 0:25 And what this actually says 0:26 - it's pretty simple - 0:28 is it's equivalent to applying 0:30 the theta condition to the 0:32 cross-product of the two expressions. 0:34 So you might wonder why 0:36 I even mention the theta 0:37 join operator, and the reason I 0:39 mention it is that most 0:40 database management systems implement the 0:42 theta join as their basic 0:44 operation for combining relations. 0:46 So the basic operation is 0:48 take two relations, combine all tuples, 0:50 but then only keep the combinations 0:51 that pass the theta condition. 0:53 Often when you talk to 0:54 people who build database systems or 0:56 use databases, when they 0:57 use the word join, they really mean the theta join. 1:02 So, in conclusion, relational algebra is a formal language. 1:06 It operates on sets of 1:08 relations and produces relations as a result. 1:10 The simplest query is just 1:12 the name of a relation and 1:13 then operators are used 1:14 to filter relations, slice them, and combine them. 1:17 So far, we've learned the 1:19 select operator for selecting rows; 1:21 the project operator for selecting 1:22 columns; the cross-product 1:24 operator for combining every possible 1:27 pair of tuples from two 1:28 relations; and then two 1:29 abbreviations, the natural join, 1:31 which a very useful way to combine 1:32 relations by enforcing a equality 1:35 on certain columns; and the theta join operator. 1:38 In the next video, we'll learn 1:39 some additional operators of relational 1:41 algebra and also some alternative 1:42 notations for relational algebra expressions.