Empty a database table command

How to empty a mysql database. Forget about delete * command

 bash | 
 
 copy code |
?

1
#!/bin/bash mysql -D $DATABASE -e 'TRUNCATE TABLENAME;'