摘要:
MySQL 运算符 1、算术运算符 执行运算符:加减乘除 ```sql select score/10 from user where id = 3; ``` 比较运算符:大于、等于、小于、不等于 ```sql select score != 100 from user where id = 3; ``` 逻辑运算符:与 ... 阅读全文
摘要:
### 创建表 1、创建数据库 ```sql create database mstest default character set utf8 collate utf8_general_ci ``` 2、创建数据表 ```sql create table user( id int, name varchar(11) ) ``` Java 数据类型:基本数据类型 byte sh... 阅读全文
摘要:
02setInterval.html 03clock.html tool.js 04djs.html 05setTimeout.html 阅读全文