An open API service indexing awesome lists of open source software.

https://github.com/andriikot/postgresql-lesson-5

PostgreSQL Lesson 5
https://github.com/andriikot/postgresql-lesson-5

Last synced: 12 days ago
JSON representation

PostgreSQL Lesson 5

Awesome Lists containing this project

README

        

# PostgreSQL-lesson-5
PostgreSQL Lesson 5

```sql
select
first_name,
last_name,
upper(first_name),
lower(first_name)
from
actor;

select
email,
substring(email,1,strpos(email,'@') - 1)
from
staff;
```