mysql - SQL request using left join -


i have 2 tables.

table : (id, type, ...)
here id primary key

table b : (id, timestamp, old_type, new_type, ...)
here id not primary key

i want make sql request return such ids each a.type not same last (by timestamp) b.new_type.

is helpful nikita?

select a.* a a.type!= (      select b.new_type b b order `timestamp` desc limit 1 ) 

Comments

Popular posts from this blog

android - Why am I getting the message 'Youractivity.java is not an activity subclass or alias' -

Making Empty C++ Project: General exception (Exception from HRESULT:0x80131500) Visual Studio Community 2015 -

How to fix java warning for "The value of the local variable is not used " -