SQL server has Query Notification.
You can also read from debezium or other cdc, but thats more like table change than query result change.
And many databases have triggers. And with postgres you can combine triggers with NOTIFY to push changes downstream.
But yeah, I feel like most databases are way behind Oracle on this feature and it's so so useful.
SQL server has Query Notification.
You can also read from debezium or other cdc, but thats more like table change than query result change.