Select By ID

Sort by

recency

|

386 Discussions

|

  • + 0 comments

    is there any syntax we can use with unique value?

  • + 0 comments

    ORACLE PL/SQL:

    SET SERVEROUTPUT ON; BEGIN FOR a in (select * from city where id = 1661) LOOP DBMS_OUTPUT.PUT_LINE(a.id || ' ' || a.name || ' ' || a.countrycode || ' ' || a.district || ' '|| a.population); END LOOP; END; /

  • + 0 comments

    SQL is such a powerful language for managing and analyzing data. Once you understand the basics, it opens up endless possibilities for querying and organizing information efficiently. funniexchange

  • + 0 comments

    select * from city where id = 1661;

  • + 0 comments

    For MySQL

    SELECT * FROM city
    WHERE id = 1661;