summaryrefslogtreecommitdiff
path: root/tests/delete.ur
blob: e2109f6130e6def953f1bd201acab0a52a1bb567 (plain)
1
2
3
4
5
table t1 : {A : int, B : string, C : float, D : bool}

fun main () : transaction page =
        () <- dml (DELETE FROM t1 WHERE T.A = 5);
        return <html><body>Deleted.</body></html>