Reputation: 1295
How would i remove all records from a given mysql table using jdbc in java.
Upvotes: 1
Views: 4389
Reputation: 29166
By executing the following query -
DELETE
FROM your_table_name;
If you also want to know how to use JDBC, then go here.
Upvotes: 5