Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

sol #18

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

Conversation

ilovepinkpony1
Copy link

No description provided.

```

8. Create a query that would select the IDs of the living people:

```postgresql
... here goes your SQL ...
SELECT id FROM famouse_peoples WHERE deth_year ISNULL;

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ISNULL - функція, а тут тобі потрібен IS NULL

```

14. Create a query that would select the people whose first name starts with a letter that precedes `M` in the English alphabet:

```postgresql
... here goes your SQL ...
SELECT * FROM famouse_peoples WHERE first_name ~ '[A-L]';

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

    SELECT * FROM famouse_peoples WHERE first_name ~ '^[A-L]';

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants