bookmate game
en
Walter Shields

SQL QuickStart Guide

Berätta för mig när boken läggs till
För att kunna läsa den här boken överför filer i EPUB- eller FB2-format till Bookmate. Hur laddar jag upp en bok?
  • Marija Stojanovićhar citeratför 3 år sedan
    SELECT
    *
    FROM
    invoices
    INNER JOIN
    customers
    ON
    invoices.CustomerId = customers.CustomerId
  • Marija Stojanovićhar citeratför 3 år sedan
    joins allow us to access fields from different tables.
  • Marija Stojanovićhar citeratför 3 år sedan
    ices with customer names.

    A JOIN clause merging both of these tables together would look like this:

    SELECT
    *
    FROM
    invoices
    INNER JOIN
    customers
    ON
    invoices.CustomerId = customers.CustomerId
  • Marija Stojanovićhar citeratför 3 år sedan
    When querying with dates, use the same operators used when querying with numbers: =, >, <, BETWEEN, etc.
  • Marija Stojanovićhar citeratför 3 år sedan
    When querying for dates, it is important to first take a look at how the date is stored in the table you are querying
  • Marija Stojanovićhar citeratför 3 år sedan
    WHERE
    InvoiceDate = '2009-01-03 00:00:00'
  • Marija Stojanovićhar citeratför 3 år sedan
    WHERE
    BillingCity NOT LIKE '%T%'
    ORDER BY
    Total
  • Marija Stojanovićhar citeratför 3 år sedan
    WHERE
    BillingCity LIKE '%T%'
    ORDER BY
    Total
  • Marija Stojanovićhar citeratför 3 år sedan
    SELECT InvoiceDate, BillingAddress, BillingCity, Total FROM invoices WHERE BillingCity LIKE 'T%' ORDER BY Total

    Počinje sa T -like'T%'

  • Marija Stojanovićhar citeratför 3 år sedan
    Wildcard characters will always be enclosed in single quotation marks. Without quotation marks, % is an arithmetic operator known as modulo,
fb2epub
Dra och släpp dina filer (upp till fem åt gången)