Hola tengo el siguiente query y quisiera modificar el registro finalizó de la persona en cuestión, en vez de "1" quiero cambiarlo a cero "0"
select distinct
Participantes.nombre,Participantes.apellido,Participantes.Cedula,
Preguntas.Descripcion,Respuestas.Contenido,cursoes.nombre,
CursoPlaneadoes.Numerocurso,Participantes.LugarDeTrabajo,
CursoPlaneadoParticipantes.Finalizo,Liders.Nombre,
Liders.Apellidofrom Respuestas, CursoPlaneadoParticipantes,
CursoPlaneadoes,Participantes,Cursoes, Preguntas, Liders
where ParticipanteId = '13212' and respuestas.preguntaid
IN (160,161,162) and CursoPlaneadoParticipantes.Id =
respuestas.CursoPlaneadoParticipanteId
and CursoPlaneadoParticipantes.Id = respuestas.CursoPlaneadoParticipanteId
and CursoPlaneadoes.Id = CursoPlaneadoParticipantes.CursoPlaneadoId
and Participantes.Id = CursoPlaneadoParticipantes.ParticipanteId
and Cursoes.Id = CursoPlaneadoes.CursoId
and CursoPlaneadoes.LiderId = Liders.Id
and Respuestas.PreguntaId = Preguntas.Id