mysql语法

2018-09-26  本文已影响0人  技术创造未来

登录: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 <字段名>;

上一篇下一篇

猜你喜欢

热点阅读