Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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

Last synced: 6 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;
```