Search
Library
More
▼
Bookshelves
Redeem code
7 days for free
Log in
en
English
Русский
Español
Dansk
Türkçe
Bahasa Indonesia
Svenska
Deutsch
Nederlands
Українська
Português
Srpski i Crnogorski
Български
Magyar
Hrvatski
Read in our apps:
iOS
·
Android
Walter Shields
SQL QuickStart Guide
Notify me when the book’s added
Impression
Add to shelf
Already read
Report an error in the book
Share
Facebook
Twitter
Copy link
To read this book, upload an EPUB or FB2 file to Bookmate.
How do I upload a book?
Search on Google
About
Quotes
51
Readers
35
On the bookshelves
Related books
Marija Stojanović
has quoted
3 years ago
SELECT
*
FROM
invoices
INNER JOIN
customers
ON
invoices.CustomerId = customers.CustomerId
Marija Stojanović
has quoted
3 years ago
joins allow us to access fields from different tables.
Marija Stojanović
has quoted
3 years ago
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ć
has quoted
3 years ago
When querying with dates, use the same operators used when querying with numbers: =, >, <, BETWEEN, etc.
Marija Stojanović
has quoted
3 years ago
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ć
has quoted
3 years ago
WHERE
InvoiceDate = '2009-01-03 00:00:00'
Marija Stojanović
has quoted
3 years ago
WHERE
BillingCity NOT LIKE '%T%'
ORDER BY
Total
Marija Stojanović
has quoted
3 years ago
WHERE
BillingCity LIKE '%T%'
ORDER BY
Total
Marija Stojanović
has quoted
3 years ago
SELECT InvoiceDate, BillingAddress, BillingCity, Total FROM invoices WHERE BillingCity LIKE 'T%' ORDER BY Total
Počinje sa T -like'T%'
Marija Stojanović
has quoted
3 years ago
Wildcard characters will always be enclosed in single quotation marks. Without quotation marks, % is an arithmetic operator known as modulo,
Don’t give a book. Give a library.
Give a Bookmate subscription →
fb2
epub
Drag & drop your files (not more than 5 at once)