Delete entity

Report a typo

Write an Exposed expression to delete a book from the Books table, which has the year of publication 2005.

object Book : IntIdTable() {
    val name: Column<String> = varchar("name", 50)
    val author: Column<String> = varchar("author", 50)
    val publicationYear: Column<Int> = integer("publication_year")
    val soldNumber: Column<Int> = integer("sold_number")
}
Enter a short text
___

Create a free account to access the full topic