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 I
Revising the Select Query I
Sort by
recency
|
923 Discussions
|
Please Login in order to post a comment
SELECT * FROM CITY Where COUNTRYCODE = 'USA' AND POPULATION > 100000; SELECT * FROM CITY Where POPULATION > 100000 AND COUNTRYCODE = 'USA' ;
I just want to know what is the difference ???
SELECT * FROM CITY Where COUNTRYCODE = 'USA' AND POPULATION > 100000;
SQL0206N "USA" is not valid in the context where it is used. SQLSTATE=42703 ? what is this error??
select * from city where countrcode='usa' and population>100000;
MYSQL
SELECT * FROM CITY Where COUNTRYCODE = 'USA' AND POPULATION > 100000;