Tablo formatındaki bir verinin insert ifadelerinin oluşturulması :)
http://tools.perceptus.ca/text-wiz.php?ops=7
Örnek Tablo:
| apple | ||
| types | color | size | 
| golden | yellow's my favorite colour | large | 
| mac | reddish | medium | 
| golden | red | varies | 
| gala | yellowish | small | 
   Returns:   
  
INSERT INTO apple (types,color,size) VALUES ('golden','yellow\'s my favorite colour','large');
INSERT INTO apple (types,color,size) VALUES ('mac','reddish','medium');
INSERT INTO apple (types,color,size) VALUES ('golden','red','varies');
INSERT INTO apple (types,color,size) VALUES ('gala','yellowish','small');