Search Results

1
vote
4answers
87 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
456 views

How to import SQL dump to a table without overwriting duplicate fields

Hi, how do I import a MySQL dump file to a database without overwriting records with the same value? …
0
votes
3answers
249 views

Copy chosen Wikipedia articles into own wiki?

Hi, is there a way to batch copy certain wikipedia articles(about 10,000) to my own mediawiki site? EDIT: How do I do this without overwriting similarly named articles/pages? Also I don't p …
0
votes
1answer
26 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 …