Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个result在 mySQL 中调用的表。我想单击一下插入多行。基本上老师是通过php将学生成绩存入数据库:
result
表:结果
实体:结果,student_id
您的 php 脚本需要按以下方式构造插入 sql(我假设您的表 T1 有两个字段 F1 和 F2,输入是 v11 v12 v21 v22 等)
INSERT INTO T1 (F1,F2) VALUES (V11,V12), (V21,V22), ... ... (Vn1,Vn2);