This query is marked as a draft This query has been published by MSUGRA.

SQL

x
 
SELECT
  COUNT(*) as refcount
FROM
  pagelinks
WHERE
  pl_from > 5000000 AND
  pl_from < 10000000 AND
  (pl_title = "United_States"
   OR pl_title = "UnitedStates"
   OR pl_title = "US"
   OR pl_title = "USA"
   OR pl_title = "U.S."
   OR pl_title = "U.S.A."
   OR pl_title = "United_States_of_America"
   OR pl_title = "The_United_States_of_America"
   OR pl_title = "United_states_of_america"
   OR pl_title = "America_(country)"
  );
By running queries you agree to the Cloud Services Terms of Use and you irrevocably agree to release your SQL under CC0 License.
All SQL code is licensed under CC0 License.

Checking query status...