17 Mart 2010 Çarşamba

Excel to insert sql

Zaman zaman hepimize bu tarz bir uygulama lazım olmuştur.

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');