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 By ID
- Discussions
Select By ID
Select By ID
Sort by
recency
|
344 Discussions
|
Please Login in order to post a comment
SELECT * FROM CITY WHERE ID=1661;
For MySQL
Select * from CITY WHERE ID = 1661;
SELECT ID,NAME,COUNTRYCODE,DISTRICT,POPULATION FROM CITY WHERE ID=1661;
-- MS SQL Server
select * from CITY WHERE ID = 1661;