en
Walter Shields

SQL QuickStart Guide

Avise-me quando o livro for adicionado
Para ler este livro carregue o arquivo EPUB ou FB2 no Bookmate. Como carrego um livro?
  • Marija Stojanovićfez uma citaçãohá 3 anos
    SELECT
    *
    FROM
    invoices
    INNER JOIN
    customers
    ON
    invoices.CustomerId = customers.CustomerId
  • Marija Stojanovićfez uma citaçãohá 3 anos
    joins allow us to access fields from different tables.
  • Marija Stojanovićfez uma citaçãohá 3 anos
    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ćfez uma citaçãohá 3 anos
    When querying with dates, use the same operators used when querying with numbers: =, >, <, BETWEEN, etc.
  • Marija Stojanovićfez uma citaçãohá 3 anos
    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ćfez uma citaçãohá 3 anos
    WHERE
    InvoiceDate = '2009-01-03 00:00:00'
  • Marija Stojanovićfez uma citaçãohá 3 anos
    WHERE
    BillingCity NOT LIKE '%T%'
    ORDER BY
    Total
  • Marija Stojanovićfez uma citaçãohá 3 anos
    WHERE
    BillingCity LIKE '%T%'
    ORDER BY
    Total
  • Marija Stojanovićfez uma citaçãohá 3 anos
    SELECT InvoiceDate, BillingAddress, BillingCity, Total FROM invoices WHERE BillingCity LIKE 'T%' ORDER BY Total

    Počinje sa T -like'T%'

  • Marija Stojanovićfez uma citaçãohá 3 anos
    Wildcard characters will always be enclosed in single quotation marks. Without quotation marks, % is an arithmetic operator known as modulo,
fb2epub
Arraste e solte seus arquivos (não mais do que 5 por vez)