I want to run a query using join on two very large tables. What is the equivalent rethinkdb syntax for this sql?
SELECT t1.uuid,t1.timestamp,t2.name
FROM t1
JOIN t2 ON t1.uuid=t2.uuid AND t1.timestamp=t2.timestamp
For the example reference, this is the sql for the tables:
CREATE TABLE t1(
id INT NOT NULL AUTO_INCREMENT,
uuid CHAR(30) NOT NULL,
timestamp CHAR(30) NOT NULL,
PRIMARY KEY(id)) ENGINE=INNODB;
CREATE TABLE t2(
id INT NOT NULL AUTO_INCREMENT,
uuid CHAR(30) NOT NULL,
timestamp CHAR(30) NOT NULL,
name CHAR(30) NOT NULL,
PRIMARY KEY(id));
The quick and dirty solution would be:
But you may want to create a compound index on those fields