MySQL query to join the same table -


i want join 2 sql queries run on same table. result should contain common rows. know mysql not have intersect. need use join guess, not sure how when sql queries run on same table.

a sample query in answer great.

you can use inner or cross join, that:

select a.columnname table inner join table b on a.key= b.key clauses 

Popular posts from this blog

c# - ODP.NET Oracle.ManagedDataAccess causes ORA-12537 network session end of file -

matlab - Compression and Decompression of ECG Signal using HUFFMAN ALGORITHM -

utf 8 - split utf-8 string into bytes in python -