This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* Timer01 Miliseconds */ | |
| =RSLINX|RealParsExcel!'Timer01.ACC,L1,C1' | |
| /* Timer01 Seconds */ | |
| =D2/1000 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| SELECT ID FROM t1 | |
| UNION | |
| SELECT ID FROM t2; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| INSERT INTO t1 VALUES (1), (2), (3); | |
| INSERT INTO t2 VALUES (2), (3), (4); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| CREATE TABLE t1 (ID INT PRIMARY KEY); | |
| CREATE TABLE t2 (ID INT PRIMARY KEY); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| DROP TABLE IF EXISTS t1; | |
| DROP TABLE IF EXISTS t2; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| SELECT t1.ID, t2.ID | |
| FROM t1 INNER JOIN t2 | |
| ON t1.Pattern = t2.Pattern; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| SELECT t1.ID, t2.ID | |
| FROM t1 CROSS JOIN t2; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| INSERT INTO t2 (ID, Pattern) | |
| VALUES ('A', 'Brick'), ('B', 'Grid'), ('C', 'Diamond'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| INSERT INTO t1 (ID, Pattern) | |
| VALUES (1, 'Divot'), (2, 'Brick'), (3, 'Grid'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| CREATE TABLE t2 ( | |
| ID VARCHAR(50) PRIMARY KEY, | |
| Pattern VARCHAR(50) NOT NULL); |