show/hide this revision's text 6 fixed bug

Assuming feed_id = 0 is the manually entered stuff this does the trick:

select p.* from programs p
left join 
(
    select max(id) id1 from programs
    where feed_id <> 0
    group by feed_id
    order by max(id) desc
    limit 10
) t on id1 = id
where id id1 is not null or id feed_id = 0 
order by id desc
limit 10;

It works cause the id column is constantly increasing, its also pretty speedy. t is a table alias.

This was my original answer:

(
select 
    feed_id, url, dt 
    from feeds  
    where feed_id = ''
    order by dt desc 
    limit 10
)
union
(

select feed_id, min(url), max(dt) 
    	from feeds
    	where feed_id <> '' 
    	group by feed_id
    	order by dt desc	
    	limit 10
)
order by dt desc
limit 10
show/hide this revision's text 5 formatting

Assuming feed_id = 0 is the manually entered stuff this does the trick:

select p.* from programs p
left join 
(
    select max(id) id1 from programs
    where feed_id <> 0
    group by feed_id
    order by max(id) desc
    limit 10
) t on id1 = id
where id is not null or id = 0 
order by id desc
limit 10;

It works cause the id column is constantly increasing, its also pretty speedy. t is a table alias.

This was my original answer:

(
select 
    feed_id, url, dt 
    from feeds  
    where feed_id = ''
    order by dt desc 
    limit 10
)
union
(

select feed_id, min(url), max(dt) 
    	from feeds
    	where feed_id <> '' 
    	group by feed_id
    	order by dt desc	
    	limit 10
)
order by dt desc
limit 10
show/hide this revision's text 4 Optimised the SQL

Assuming feed_id = 0 is the manually entered stuff this does the trick:

select * from programs
p
where feed_id = 0 
or id in 
left join 
(
select max(id) id1 from
programs
where feed_id <> 0
group by feed_id
order by max(id) desc
limit 10
) t on id1 = id
where id is not null or id = 0 
order by id desc
limit 10;

It works cause the id column is constantly increasing, its also pretty speedy. t is a table alias.

This was my original answer:

(
select 
    feed_id, url, dt 
    from feeds  
    where feed_id = ''
    order by dt desc 
    limit 10
)
union
(

select feed_id, min(url), max(dt) 
    	from feeds
    	where feed_id <> '' 
    	group by feed_id
    	order by dt desc	
    	limit 10
)
order by dt desc
limit 10
show/hide this revision's text 3 expanded answer
show/hide this revision's text 2 fixed grammar
show/hide this revision's text 1