If I wanted to insert data into the same column multiple times as follows:
INSERT INTO string_tbl(vchar_fld) VALUE ('abcd');
INSERT INTO string_tbl(vchar_fld) VALUE ('xyz');
INSERT INTO string_tbl(vchar_fld) VALUE ('QRSTUV');
INSERT INTO string_tbl(vchar_fld) VALUE ('qrstuv');
INSERT INTO string_tbl(vchar_fld) VALUE ('12345');
Is there a more efficient way than the above of having to write identical inserts with the exception of the distinct data?