October 2022
Intermediate to advanced
380 pages
9h 35m
English
As we know, there are known knowns; there are things we know we know. We also know there are known unknowns; that is to say we know there are some things we do not know. But there are also unknown unknowns—the ones we don’t know we don’t know.
In the example bugs database, the Accounts table has columns first_name and last_name. You can use an expression to format the user’s full name as a single column using the string concatenation operator:
| | SELECT first_name || ' ' || last_name AS full_name FROM Accounts; |
Suppose your boss asks you to modify the database to add the user’s middle initial to the table (perhaps two users have the same first name and last ...
Read now
Unlock full access