登录:mysql -u root -p
mysql-login一、进去库:use center;
二、显示当前库的所有表:show tables;
三、查询字段:
select customer_id from notification_customernotification where id=1784229;
四、查看表table_name有哪些字段:
show create table <表名>;
五、删除表中某个字段,使用drop关键字。
基本的语法为:alter table <表名> drop column <字段名>;
网友评论