lix_uan lix_uan
2年前
Hive调优
Explain查看执行计划在查询语句前加explainsqlexplainselectfromtable;查看详细执行计划explainextendedselectfromtable;建表优化分区表sql创建分区表createtabledeptpartition(deptnoint,dnamest
小万哥 小万哥
11个月前
SQL 数据操作技巧:SELECT INTO、INSERT INTO SELECT 和 CASE 语句详解
SQLSELECTINTO语句SELECTINTO语句将数据从一个表复制到一个新表中。SELECTINTO语法将所有列复制到新表中:sqlSELECTINTOnewtable
Stella981 Stella981
3年前
CMS类程序的Tags功能的数据库模型
第一个想法归纳如下表1:news\id   detail   keywords表2:tags\id   tag表3:news\_tag\tag\_id   news\_id其实看了表
Stella981 Stella981
3年前
SpringBoot项目中自定义404页面
1错误处理有原理分析使用SpringBoot创建的web项目中,当我们请求的页面不存在(http状态码为404),或者服务器发生异常(http状态码一般为500)时,SpringBoot就会给我们返回错误信息。也就是说,在SpringBoot的web项目中,会自动创建一个/error的错误接口,来返回错误信息。但是针对不同的访问方式,会有以下两种
可莉 可莉
3年前
219. 单页应用 会话管理(session、cookie、jwt)
原文链接:https://github.com/ly525/blog/issues/219(https://www.oschina.net/action/GoToLink?urlhttps%3A%2F%2Fgithub.com%2Fly525%2Fblog%2Fissues%2F219)关键字:httponly,cookie,se
Stella981 Stella981
3年前
Android 仿淘宝、京东商品详情页向上拖动查看图文详情控件DEMO详解
一、淘宝商品详情页效果!(https://img.jbzj.com/file_images/article/201609/2016090409490116.gif)我们的效果!(https://img.jbzj.com/file_images/article/201609/2016090409490117.gif)二、实现
Stella981 Stella981
3年前
219. 单页应用 会话管理(session、cookie、jwt)
原文链接:https://github.com/ly525/blog/issues/219(https://www.oschina.net/action/GoToLink?urlhttps%3A%2F%2Fgithub.com%2Fly525%2Fblog%2Fissues%2F219)关键字:httponly,cookie,se
Wesley13 Wesley13
3年前
JS抓取印尼连城航空航线
_js提取印尼连城航空航线_使用方法,打开印尼连城航空网站,搜索任意航线,在结果页打开js控制台,运行下方脚本。varmlistfireflyResource.marketInfo.MarketList;varresult"";for(vardepinmlist){varar
Wesley13 Wesley13
3年前
Mysql之数据操作
数据的增删改查:增:insertinto表名values();删:物理删除:deletefrom表名where条件;逻辑删除;改:update表名set列1值1,列2值2...where条件;查:全查:select\from数据表名;指定条件查:select\fr
Wesley13 Wesley13
3年前
6.多表查询
多表查询本节重点:多表连接查询符合条件连接查询子查询准备工作:准备两张表,部门表(department)、员工表(employee)createtabledepartment(idint,namevarchar(20));