Search Results

1
vote
2answers
108 views

How to know if MATERIALIZED VIEW update is running?

I'm talking about oracle. I have a few materialized views, and they're updated from time to time (it is done with a scheduled task). It is easy to know last refresh date - just query USER_MVIEW_RE …
0
votes

problem constructing a mysql query(most recent per item)

select p.id, p.type, max(c.whenadd) from photos p, comments c where p.id = c.photo_id group by photo.id order by c.whenadd desc - this will return only commented photos. Use left join …