Which of the following statements will select the State and Capital fields for states with populations that exceed 5,000,000? The Population field is numeric. (Input 1, 2, 3, or 4) SELECT State, Capital FROM States WHERE Population > 5000000SELECT State, Capital FROM States WHERE Population > '5000000'SELECT State, Capital FROM States WHERE Population > "5000000"SELECT State, Capital FROM States SELECT Population > 5000000