summaryrefslogtreecommitdiff
path: root/tests/delete.ur
blob: fee638129b59de62e0bbf5ad6fab28cc6fe0c7cf (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 A = 5);
        return <html><body>Deleted.</body></html>