1
vote
4answers
86 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
3answers
242 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 …
