Guest User

Untitled

a guest
Jun 23rd, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. TRUNCATE TABLE tablename
  2.  
  3. DELETE FROM tablename
  4.  
  5. TRUNCATE TABLE `table`
  6.  
  7. DELETE FROM `table`
  8.  
  9. ALTER TABLE `table` AUTO_INCREMENT = value
  10.  
  11. TRUNCATE TABLE mytable
  12.  
  13. TRUNCATE TABLE table;
  14.  
  15. mysql_query('TRUNCATE TABLE table;');
Add Comment
Please, Sign In to add comment