About 18,300 results
Open links in new tab
  1. SQL Tutorial - SQLZoo

    Tutorials: Learn SQL step by step 0 SELECT basics Some simple queries to get you started 1 SELECT name Some pattern matching queries 2 SELECT from World In which we query the World country …

  2. Sql - SQLZoo

    What do you think of the new layout of SQLZoo? Please share your opinion with us: [email protected] The original site is still available at http://old.sqlzoo.net

  3. SELECT basics - SQLZoo

    2. Checking a list The word IN allows us to check if an item is in a list. The example shows the name and population for the countries 'Brazil', 'Russia', 'India' and 'China'.

  4. SELECT within SELECT Tutorial - SQLZoo

    This tutorial looks at how we can use SELECT statements within SELECT statements to perform more complex queries.

  5. SQLZoo:About - SQLZoo

    The inmates of SQLzoo are the SQL engines (MySQL, Oracle, SQL Server and others). They have been tamed, caged and defanged so that members of the public can pet them or poke them or gawk at them.

  6. The JOIN operation - SQLZoo

    JOIN and UEFA EURO 2012 This tutorial introduces JOIN which allows you to use data from two or more tables. The tables contain all matches and goals from UEFA EURO 2012 Football …

  7. SQL Zoo - SQLZoo

    Interactive SQL tutorial, learn about: SQL Server, Oracle, MySQL, DB2, Mimer, PostgreSQL, SQLite and Access.

  8. SQL Tutorial/zh - SQLZoo

    Assessments: More involved examples for confident users Each assessment includes 15 questions graded easy, medium and hard. Adventure Works An example based on a wholesaler (based on …

  9. SELECT Quiz - SQLZoo

    SELECT name, population FROM world WHERE population BETWEEN 1000000 AND 1250000

  10. SELECT - SQLZoo

    A SELECT statement gets data from a table. Each table contains rows and columns - you can SELECT some columns and ignore others The column names on the select line control which columns you …