|
|
|
|
|
by zeroimpl
2811 days ago
|
|
I tried your SQL in the demo, and it came out like this: SELECT
field,
other_field
FROM
TABLE
WHERE
some_thing IN (
SELECT
id
FROM
other_table)
AND other_field IS NOT NULL
I'd have expected the last line to have one less indentation level... |
|