搜索
您的当前位置:首页正文

MySQL相关文章索引(7)

来源:二三娱乐

环境部署

基本常识

insert into persons 

(id_p, lastname , firstName, city )

values

(200,'haha' , 'deng' , 'shenzhen'),

(201,'haha2' , 'deng' , 'GD'),

(202,'haha3' , 'deng' , 'Beijing');

  1. alter table test add column birth date;

  2. ALTER TABLE table_name RENAME TO new_table_name

Debug


  1. update user set authentication_string=password('123456') where user='root';

实战演练

Top