Ecosyste.ms: Awesome
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: 6 days ago
JSON representation
PostgreSQL Lesson 5
- Host: GitHub
- URL: https://github.com/andriikot/postgresql-lesson-5
- Owner: AndriiKot
- Created: 2023-04-13T08:01:22.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2023-04-13T08:14:11.000Z (over 1 year ago)
- Last Synced: 2024-11-07T15:18:10.175Z (about 2 months ago)
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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;
```