Overview

The list below shows suggested interwiki links. It was generated on the 3rd August 2004 from the 26th July 2004 database dump.

Preamble

Interwiki links connect articles covering more or less the same topic in different languages. This is one of the most unique features of Wikipedia, as many interwiki links as possible should exist.

Suggested improvements

List

Link inductions

A:X → B:X → C:X, suggest A:X → C:X where no link to C exists from A:X

SELECT concat( '*[[:', A.from_lang, ':', A.from_title, ']] → [[:', B.to_lang, ':', B.to_title, ']] ?' )
INTO OUTFILE 'out.txt'
FROM link2 A
  INNER JOIN link2 B ON A.to_lang = B.from_lang AND A.to_title = B.from_title AND B.to_lang <> A.from_lang
  LEFT OUTER JOIN link2 C ON C.from_lang = A.from_lang AND C.from_title = A.from_title AND C.to_lang = B.to_lang 
WHERE C.from_lang IS NULL

List removed, was hideously out of date - TB 18:06, 31 December 2005 (UTC)