LOCK TABLES table1 WRITE;
TRUNCATE table1; //if you want to empty it all
INSERT INTO table1 (id, accountid,client) VALUES (18, '3174349665', 'myclient'),
table1
id
accountid
client
UNLOCK TABLES;