我正在尝试使用脚本将大约 15,000 行数据输入到我的表中,但是当我运行脚本时,我得到一个弹出窗口,要求我输入替换变量。
如何阻止它弹出,以便它允许我输入日期?
以下是我需要输入的一些数据行的一些示例
INSERT INTO description
(description, item_weight, pickup_customer, delivery customer, category)
VALUES
('Normal', 4771, 'Carfax & Co', 'Matriotism Plc', 'A');
INSERT INTO description
(description, item_weight, pickup_customer, delivery customer, category)
VALUES
('Normal', 2525, 'Matriotism Plc', 'Carfax & Co', 'A');
INSERT INTO description
(description, item_weight, pickup_customer, delivery customer, category)
VALUES
('Normal', 693, 'Matriotism Plc', 'Sylph Fabrication', 'A');
INSERT INTO description
(description, item_weight, pickup_customer, delivery customer, category)
VALUES
('Fragile', 2976, 'Nosophobia Fabrication', 'Carfax & Co', 'B');
INSERT INTO description
(description, item_weight, pickup_customer, delivery customer, category)
VALUES
('Fragile', 3385, 'Nosophobia Fabrication', 'Carfax & Co','B');