Select By ID

Sort by

recency

|

359 Discussions

|

  • + 0 comments
    SELECT * FROM city WHERE id = 1661;
    
  • + 0 comments
    SELECT *
    FROM city
    WHERE id = 1661;
    
  • + 0 comments

    Select * from CITY where ID in (1661)

  • + 1 comment

    My solution:

    SELECT * FROM CITY
    WHERE ID = 1661;
    
  • + 0 comments

    CLEAR THIS INSTRUCTIONS FROM THE EDITOR FIRST AND THEN RUN QUERY select * from city where id = 1661
    /* Enter your query here and follow these instructions: 1. Please append a semicolon ";" at the end of the query and enter your query in a single line to avoid error. 2. The AS keyword causes errors, so follow this convention: "Select t.Field From table1 t" instead of "select t.Field From table1 AS t" 3. Type your code immediately after comment. Don't leave any blank line . */