en
Walter Shields

SQL QuickStart Guide

Avisarme cuando se agregue el libro
Para leer este libro carga un archivo EPUB o FB2 en Bookmate. ¿Cómo puedo cargar un libro?
  • Marija Stojanovićcompartió una citahace 3 años
    SELECT
    *
    FROM
    invoices
    INNER JOIN
    customers
    ON
    invoices.CustomerId = customers.CustomerId
  • Marija Stojanovićcompartió una citahace 3 años
    joins allow us to access fields from different tables.
  • Marija Stojanovićcompartió una citahace 3 años
    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ćcompartió una citahace 3 años
    When querying with dates, use the same operators used when querying with numbers: =, >, <, BETWEEN, etc.
  • Marija Stojanovićcompartió una citahace 3 años
    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ćcompartió una citahace 3 años
    WHERE
    InvoiceDate = '2009-01-03 00:00:00'
  • Marija Stojanovićcompartió una citahace 3 años
    WHERE
    BillingCity NOT LIKE '%T%'
    ORDER BY
    Total
  • Marija Stojanovićcompartió una citahace 3 años
    WHERE
    BillingCity LIKE '%T%'
    ORDER BY
    Total
  • Marija Stojanovićcompartió una citahace 3 años
    SELECT InvoiceDate, BillingAddress, BillingCity, Total FROM invoices WHERE BillingCity LIKE 'T%' ORDER BY Total

    Počinje sa T -like'T%'

  • Marija Stojanovićcompartió una citahace 3 años
    Wildcard characters will always be enclosed in single quotation marks. Without quotation marks, % is an arithmetic operator known as modulo,
fb2epub
Arrastra y suelta tus archivos (no más de 5 por vez)