我想删除一个带有特定标题的表格列。这个查询有什么问题?如果我在我的webbrowser中添加了删除URL(带有请求的标题; ...?name =),我会得到最后一个回显(错误消息)
<?php
//Getting Id
$name = $_GET['name'];
//Importing database
require_once('dbConnect.php');
//Creating sql query
$sql = "ALTER TALBE tische DROP `$name`";
//Deleting record in database
if(mysqli_query($con,$sql)){
echo 'Element erfolgreich aus Abrechnung entfernt';
}else{
echo 'Konnte Element nicht aus Abrechnung entfernen';
}
//closing connection
mysqli_close($con);
答案 0 :(得分:1)
语法是:
ALTER TABLE table_name DROP COLUMN column_name