It depends on what you're trying to delete. If you want to delete a specific value or row based on an ID you can use the DELETE FROM table_name WHERE value_to_delete.
The TRUNCATE function will delete all the values from a certain table. I attached the link to the website I used.
https://beginner-sql-tutorial.com/sql-delete-statement.htm