摘要: 1、插入数据方式 a> insert into student (id, name, age) values (1, 'zhangsan', 3); --字符串类型要用双引号、或单引号引起来,否则报错 b> insert into student values(1, 'zhangsan', 3); 阅读全文
posted @ 2018-03-10 20:20 think的海角 阅读(246) 评论(0) 推荐(0) 编辑
摘要: 1、mysql--> https://www.mysql.com/ 2、菜鸟教程--> http://www.runoob.com 3、maven官网--> https://maven.apache.org/ 4、redis菜鸟教程 http://www.runoob.com/redis/ 5、电子 阅读全文
posted @ 2018-03-10 17:57 think的海角 阅读(342) 评论(0) 推荐(0) 编辑
摘要: 1、cmd --> 开启服务:net start mysql 关闭服务:net stop mysql 没有restart命令;命令格式:net stop serviceName;后面不需要加分号等,应和sql区分开来 2、查询当前MySQL版 select version(); 3、查询所有数据库名 阅读全文
posted @ 2018-03-10 17:44 think的海角 阅读(125) 评论(0) 推荐(0) 编辑
摘要: 1 <!DOCTYPE HTML> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 <title>无标题文档</title> 6 </head> 7 8 <body> 9 <table id="tb1"> 10 <tr><td>1</td></tr> 11 阅读全文
posted @ 2018-03-10 12:09 think的海角 阅读(123) 评论(0) 推荐(0) 编辑
摘要: 1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="utf-8"/> 5 <title>h5compareDate</title> 6 </head> 7 <body> 8 <form name="form1" action="compareDa 阅读全文
posted @ 2018-03-10 11:34 think的海角 阅读(927) 评论(0) 推荐(0) 编辑