摘要: 多表查询: 内连接:查出两个表的交集部分 显示 select * from a inner join b on a.字段 = b.字段 隐式 select * from a,b where a.字段 = b.字段 外连接 左外连接: 左表的数据全部显示,两个表交集显示 select * from a 阅读全文
posted @ 2020-09-24 19:28 尘缘01 阅读(535) 评论(0) 推荐(0) 编辑
摘要: Statement和PreparedStatement都是用于执行SQL语句的句柄 但是PreparedStatement代表的是一个预编译的SQL。 这两种对象的区别主要体现在以下的三个方面: 第一是使用方面的区别,statement执行的SQL语句必须是一个完整的SQL,而对于PreparedS 阅读全文
posted @ 2020-09-24 19:21 尘缘01 阅读(527) 评论(0) 推荐(0) 编辑
摘要: 记住几种简单格式 <table id="table"> <tr> <th>姓名</th> <th>年龄</th> <th>成绩类别</th> </tr> <tr v-for="s in students"> <td>{{s.name}}</td> <td>{{s.age}}</td> <td v-i 阅读全文
posted @ 2020-09-24 11:35 尘缘01 阅读(138) 评论(0) 推荐(0) 编辑