笔记本(一)

来源:互联网 发布:恋爱试用期知乎 编辑:程序博客网 时间:2024/04/26 06:47

一:SQL语句

增加:insert  into  tbmember  (Name,Sex)  values  ("张三","男");

删除:delete from tbmember  where ID=33;

修改:update  tbmember  set  name="李四"  where  ID=32;

查询:select  * from  tbmember  where  name="张三";

升序:select  * from  tbmember  where  sex=1 order by name asc;

降序:select  * from  tbmember  where  sex=1 order by name desc;


二:英语单词

Run:运行
Cancel:取消
Submit:提交
Confirm:确认

Retry:重试

Typical(典型)、Complete(完全)、Custom(自定义)
Detailed Configuration 详细配置Standard Configuration 标准配置
Developer Machine  开发机
Server Machine  服务器机
Dedicated MySQL Server Machine  专用的MySQL服务器


Multifunctional Database  多功能数据库
Transactional Database Only  事务型数据库
Non-Transactional Database Only  非事务性数据库

Decision Support(DSS)/OLAP ] 决策支持DSS/OLAP]
Online Transaction Processing(OLTP)  联机事务处理(OLTP
Manual Setting  手动设置

Enable TCP/IP Networking  启用TCP / IP网络
Enable Strict Mode 启用严格模式

Standard Character Set  标准字符集Best Support For Multlingualism  多语言支持Manual Selected Default Character Set/Collation  手选默认字符集

nstall As Windows Service              作为Windows服务的安装Launch the MySQL Server automatically  自动启动MySql服务器Include Bin Directory in Windows PATH  在Windows 路径下  隐含二进制地址

Modify Security Settings 修改安全设置Enable root access from remote machines 远程计算机上启用root访问权限
Create An Anonymous Account  创建一个匿名帐号

原创粉丝点击