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.
- Prepare
- SQL
- Basic Select
- Select All
- Discussions
Select All
Select All
Sort by
recency
|
375 Discussions
|
Please Login in order to post a comment
SELECT ID, NAME, COUNTRYCODE, DISTRICT, POPULATION FROM CITY; OR SELECT * FROM CITY; This symbol '*' represents all columns :))
SELECT * FROM CITY;
MySQL:
select* from CITY
where COUNTRYCODE='USA' or COUNTRYCODE='NLD';
The question is weirdly formulated. Why is it not just "Query all entry in the table"?
For MySQL