I have this table like this:
CODIGO_AULA DATA_AULA TURMA
----------- ---------- ----------
1 2018-01-19 MEC-001
2 2018-01-19 MEC-001
1 2018-01-20 MEC-001
2 2018-01-20 MEC-001
1 2018-01-21 MEC-001
2 2018-01-21 MEC-001
1 2018-01-22 MEC-001
2 2018-01-22 MEC-001
I need to do an update in the same one according to this past situation, I went by parameter the date: 2018-01-20
Getting :
1 2018-01-21 MEC-001
2 2018-01-21 MEC-001
1 2018-01-22 MEC-001
2 2018-01-22 MEC-001
1 2018-01-23 MEC-001
2 2018-01-23 MEC-001
It will only move from the date I passed to the end of the table. What I need and get is to do an update of the date I went through and came up?