未知列“名称”;在“字段列表”中

发布于 2024-12-12 01:23:34 字数 502 浏览 0 评论 0原文

 function Student_model()
     {

         parent::Model();
     }

 function insert_data($name,$roll,$department,$semester)
         {

         $qry="INSERT INTO data (id,name,roll,department,semeseter) values ('',?,?,?,?)";
         $this->db->query($qry, array($name,$roll,$department,$semester));


         }
}

“字段列表”中的未知列“名称”

INSERT INTO 数据(id、名称、滚动、部门、学期)值 ('1'、'adsfas'、'117437'、'4th'、'3rd')< /code>

这里需要一些帮助。

 function Student_model()
     {

         parent::Model();
     }

 function insert_data($name,$roll,$department,$semester)
         {

         $qry="INSERT INTO data (id,name,roll,department,semeseter) values ('',?,?,?,?)";
         $this->db->query($qry, array($name,$roll,$department,$semester));


         }
}

Unknown column 'name' in 'field list'

INSERT INTO data (id,name,roll,department,semeseter) values ('1','adsfas','117437','4th','3rd')

need some help here.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

落日海湾 2024-12-19 01:23:35

我建议检查相关列的列列表。看来您的专栏
正在尝试寻找不存在的。

您可以检查“semeseter”以确保这不是英语单词semester的拼写错误。

这很可能是你的问题。

I suggest checking the list of columns for the column in question. It appears that the column you
are trying to find does not exist.

You might check "semeseter" to ensure that this is not a typo of the English word semester.

This is likely your issue.

嘿看小鸭子会跑 2024-12-19 01:23:34

这个问题很旧,但我会添加一些内容,因为没有答案被标记为有效。

错误消息指出字段“name”,因此我们暂时忽略拼写错误的“semeseter”。

如果“名称”列存在并且您收到一条错误消息表明它不存在,
可能为此表设置了“插入前触发”,该表在触发器主体中的某处引用“name”而不是“new.name”。

我希望这可以帮助有类似问题的人。

The question is old, but i'll add something since no answers has been marked valid.

The error message states the field "name", so let's ignore misspelling "semeseter" for now.

If the column "name" exists and you got an error message suggesting it doesn't,
there is likely to be a "trigger before insert" set for this table that references "name" instead of " new.name " somewhere in the trigger body.

I hope this helps people with similar issues.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文