C
C#6mo ago
Sk

✅ I want to delete these two rows

Doing the usual "DELETE FROM Shops WHERE Id = 1 OR Id = 2;" doesnt work, what can I do to delete them as i seeded them wrong
No description
2 Replies
Mango
Mango6mo ago
The table has just those 2 rows and you want to delete all of them? TRUNCATE TABLE Shops should also work. @Sk
Sk
Sk6mo ago
thankyou!