We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
Revising the Select Query II
Revising the Select Query II
Sort by
recency
|
648 Discussions
|
Please Login in order to post a comment
Select Name from CITY where CountryCode = 'USA' and Population > 120000
SELECT NAME FROM CITY WHERE COUNTRYCODE='USA' AND POPULATION>120000;
select name from city where countrycode = 'USA' and population > 120000;
If you are using MS SQL server version, put semicolon ; at the end of the query it will resolve the issue.
SQL0206N "USA" is not valid in the context where it is used. SQLSTATE=42703