I want to delete a row where date is '2022-09-08' the date is present but I am not able to delete it connected my clickhouse with python
table name :- repeat_day_by_last_120_active_cohort_v1
columns :- 'date','L120_active_cohort_logins','L120_active_cohort','percentage_L120_active_cohort_logins'
Code is as follows :-
client.execute(f'''ALTER TABLE repeat_day_by_last_120_active_cohort_v1 DELETE WHERE date = "2022-09-08"''')
Error message is as follows :-
clickhouse_driver.errors.ServerException: Code: 47.
DB::Exception: Missing columns: '2022-09-08' while processing query: 'SELECT percentage_L120_active_cohort_logins, L120_active_cohort, L120_active_cohort_logins, date WHERE isZeroOrNull(date = `2022-09-08`)', required columns: 'percentage_L120_active_cohort_logins' 'L120_active_cohort' 'L120_active_cohort_logins' 'date' '2022-09-08', maybe you meant: ['percentage_L120_active_cohort_logins','L120_active_cohort','L120_active_cohort_logins','date']. Stack trace: