|
|
|
|
|
by gleb
3970 days ago
|
|
The example doesn't quite make sense: SELECT user_id IN (SELECT DISTINCT user_id FROM user_actions);
is not valid SQL. You may mean something like: SELECT 123 IN (SELECT DISTINCT user_id FROM user_actions);
which is a strange query, as it's equivalent to: SELECT 123 IN (SELECT user_id FROM user_actions);
|
|
Fixed the post, thanks!