blob: 672695f1a2a5a9ed96e4270f43f3bd035726bc02 [file] [log] [blame]
SELECT t1.col_int
FROM typeall_l t1, typeall_r t2
WHERE t1.col_int = t2.col_int OR ( t1.col_int IS NULL AND t2.col_int IS NULL )
UNION ALL
SELECT t2.col_int
FROM typeall_l t1, typeall_r t2
WHERE t1.col_int = t2.col_int OR ( t1.col_int IS NULL AND t2.col_int IS NULL );