这是我的SQL查询
UPDATE Nomina
SET utilidadSemana =
(SELECT SUM(totalIngresosXSemana - totalGastosXSemana)
FROM Nomina
WHERE fechaInicio >= @fechaInicial
AND fechaFin <= @fechaFinal)
WHERE
fechaInicio >= @fechaInicial
AND fechaFin <= @fechaFinal;
答案 0 :(得分:0)
您的日期是常数,因此您可以使用override func tableView(_ tableView: UITableView, commit editingStyle: UITableViewCellEditingStyle, forRowAt indexPath: IndexPath){
if editingStyle == UITableViewCellEditingStyle.delete {
rowHere = indexPath.row
// it crashes the app when I want to delete from database
// delete(self.todos[self.rowHere!])
self.todos.remove(at: indexPath.row)
tableView.deleteRows(at: [indexPath as IndexPath], with: UITableViewRowAnimation.automatic)
}
}
:
CROSS JOIN