摘要:
1.增加数据:insert into 表名(列名1,列名2,...列名n) values(值1,值2,...值n); 注意:insert into 表名 values(值1,值2,...值n); 要给所有列赋值,不然报错,如果写列名如上则可以只给写到的列赋值; 2.删除数据: delete from 阅读全文
摘要:
1.创建表: create table student( id int, name varchar(32), age int , score double(4,1), -- 4位数,1位是小数 birthday date, insert_time timestamp); 复制表: create ta 阅读全文
摘要:
1.MySQL服务启动 * net start mysql : 启动mysql的服务 * net stop mysql:关闭mysql服务 2.使用管理员打开cmd窗口 MySQL登录 . mysql -uroot -p密码 . mysql -hip -uroot -p连接目标的密码 . mysql 阅读全文
摘要:
1.在HTTPrequest的content-encoding里写上utf-8 2.在jmeter的bin/jmeter.properties里 # The encoding to be used if none is provided (default ISO-8859-1)#sampleresu 阅读全文