Didone / Didone/0722-bootcamp-sql
Antijunção esquerda
Open
bootcamp
optional
- Dominant language
- Python
- Stars
- 15
- Forks
- 24
- PR merge metrics
- No merged PRs in 30d
Description
Implemente o operador de anti junção a esquerda no objeto `Table` (modifique o arquivo [table.py](https://github.com/Didone/0722-bootcamp-sql/blob/main/csvms/table.py), chamado `ᐅ`, para ser utilizada em operações de `LEFTT ANTI JOIN`
Os testes serão executados sobre as tabelas `lista_frutas` e `tipo_frutas` ( #7 ), conforme mostrado abaixo:
```python
from csvms.table import Table
tbl = Table('lista_frutas').ᐅ(Table('tipo_frutas'), where={'eq':['lista_frutas.tp_fruta','tipo_frutas.tp_fruta']})
```
Contributor guide
Assessment
This issue has not been assessed yet.