vtcbca / internal-exam-23bca298

23bca-python-sqlite-internal-exam-303-PYTHON-EXAM created by GitHub Classroom
0 stars 0 forks source link

how to solve this. #2

Closed 23bca298 closed 1 week ago

23bca298 commented 1 week ago

Update records who are from "Surat" branch with increment in salary 10% and write it into "Surat.csv" file.

23bca264 commented 1 week ago

UPDATE emp SET salary = salary * 1.10 WHERE branch = 'Surat'

23bca298 commented 1 week ago