本文介绍了删除表格列的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
以下内容正确吗?我遇到了错误.
Is the following correct? I am getting an error.
<?php
$form_id = $form->data['form_id'];
$query = mysql_query("
ALTER TABLE 'email_history' DROP '$form_id';
") or die(mysql_error());
?>
推荐答案
在MySQL中使用`(反引号)来分隔对象名称.试试吧
Use ` (backtick) to delimit object names in MySQL. Try that
ALTER TABLE `email_history` DROP `$form_id`;
注意,我不了解php,但是您无法参数化DDL(ALTER TABLE
等)
Note, I don't know php, but you can't parametrise DDL (ALTER TABLE
etc)
这篇关于删除表格列的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!