6-23日学习记录

Posted forever121812

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了6-23日学习记录相关的知识,希望对你有一定的参考价值。

mysql

MySQL Workbench 官网:‘https://www.mysql.com/products/workbench/’

MySQL设置密码时注意密码的负责度应有 数字 +符号+ 英文 ,不然workbench会报错!

 

创建一个数据库的表单:

create table %name (
id int(3),
name varchar(8),
password varchar(20));

更改表单名:

alter table %oldname rename to %newname;

或者

rename table %oldname to %newname;

增加一个列表:

alter table %form add %line_name varchar(255) not null;

删除一个列:

alter table %form drop %del_line;

单词

query    查询

edit       编辑

refactor    重构

 

以上是关于6-23日学习记录的主要内容,如果未能解决你的问题,请参考以下文章