1 2 3 4 5 6 7 8 9 10 11 |
LOCK TABLES table1 WRITE; TRUNCATE table1; //if you want to empty it all INSERT INTO `table1` (`id`, `accountid`,`client`) VALUES (18, '3174349665', 'myclient'), UNLOCK TABLES; |

1 2 3 4 5 6 7 8 9 10 11 |
LOCK TABLES table1 WRITE; TRUNCATE table1; //if you want to empty it all INSERT INTO `table1` (`id`, `accountid`,`client`) VALUES (18, '3174349665', 'myclient'), UNLOCK TABLES; |
© 2022 CODEHAVEN