Search Results

1
vote
4answers
84 views

Fast way to get the difference of 2 columns in MySQL

Hi, how do I get the fields of a column that's without a match in another column? I tried: SELECT table1.page_title FROM table1, table2 WHERE table1.page_title != table2.p …
0
votes
1answer
24 views

How are nested set models traversed in MySQL?

I'm reading this article and on the part with the query: SELECT node.name FROM neste …