Viewing post 1 (of 1 total)
Hi Ddee,
You can achieve the desired result using the following SQL query:
sql
SELECT ID, flag, name
FROM your_table t
WHERE (flag = 0 AND NOT EXISTS (SELECT 1 FROM your_table WHERE ID =...
July 26, 2023 at 4:37 pm
#4245184