我在记事本中有一个 31 mb 的 .txt 文件,我不确定如何将其导入 phpmyadmin。我在 stackExchange 上查看了类似的问题,但无济于事。每次我尝试上传时,我都会收到错误消息“您可能尝试上传过大的文件。请参阅文档以了解解决此限制的方法。” 考虑到文件太大,我什至将它修改为只有 3 行作为测试,我得到了一个完全不同的错误!我确定我的问题之一是没有选项显示 .txt,我只能从 CSV、SQL、DocSQL、Open Document Spreadsheet 和 XML 中进行选择。所以我假设我必须将我的 .txt 文件转换为其中一个文件来上传,除非当然有一种我不知道的完全不同的导入方式。我的 .txt 文件中的一些有问题的代码读作
CREATE TABLE IF NOT EXISTS occupationalinfo (
`ID` VARCHAR(255),
`Title` VARCHAR(255),
`DESCRIPTION` VARCHAR(255)) TYPE=MyISAM;
INSERT IGNORE INTO occupationalinfo (`ID`,`Title`,`DESCRIPTION`) VALUES
('1','Architects, Except Landscape and Marine','CODE: 22302 TITLE: Architects, Except Landscape and Marine DEFINITION: Plan and design structures, such as private residences, office buildings, theaters, factories, and other structural property. TASKS KNOWLEDGE SKILLS ABILITIES WORK ACTIVITIES WORK CONTEXT INTERESTS WORK VALUES CROSSWALKS TASKS: 1. Prepares information regarding design, structure specifications, materials, color, equipment, estimated costs, and construction time. 2. Plans layout of project. 3. Integrates engineering element into unified design.
我仍处于编程的早期学习阶段,因此将不胜感激任何提示和解释