Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/h9lk/sql-learning

SQL training, correct problem solving
https://github.com/h9lk/sql-learning

hackerrank-solutions mssqlserver query-language sql sql-solution w3school-exercises-solutions

Last synced: 17 days ago
JSON representation

SQL training, correct problem solving

Awesome Lists containing this project

README

        

# Sql learning progress

## Solutions to challenges on
- [x] [W3Schools](https://www.w3schools.com/sql/default.asp)
- [x] [SQL-Academy](https://sql-academy.org/en)
- [x] [SQL-Bolt](https://sqlbolt.com/)
- [x] [PostgreSQL Exercises](https://www.pgexercises.com/)
- [x] [HackerRank](https://www.hackerrank.com/domains/sql)
- [ ] [Codecademy](https://www.codecademy.com/catalog/language/sql)
- [ ] [Codewars](https://www.codewars.com/dashboard)
- [ ] [SQL-EX](https://sql-ex.ru/?Lang=1)

# Frequently used functions
## Aggregate
* ```Avg```
* ```Count```
* ```Max```
* ```Min```
* ```Sum```

## Conversion
* ```Cast```
* ```Convert```

## Date & Time
* ```Datediff```
* ```Datepart```

## Expressions
* ```Case```
* ```Coalesce```
* ```Top```
* ```Limit```
* ```Distinct```

## Mathematical
* ```Ceiling```
* ```Floor```
* ```Sqrt```
* ```Power```

## Ranking
* ```Row_number```
* ```Rank```

## String
* ```Concat```
* ```Len```
* ```Left```
* ```Ltrim```
* ```Lower```
* ```Replace```
* ```Right```
* ```Substring```