上一页 1 ··· 5 6 7 8 9 10 11 下一页

2018年6月11日

oracle之SQL的基本函数

摘要: SQL的基本函数2.1 单行函数与多行函数 单行函数:指一行数据输入,返回一个值的函数。所以查询一个表时,对选择的每一行数据都返回一个结果。SQL>select empno,lower(ename) from emp; 多行函数:指多行数据输入,返回一个值的函数。所以对表的群组进行操作,并且每组返回 阅读全文

posted @ 2018-06-11 10:17 小孩没穿鞋 阅读(189) 评论(0) 推荐(0) 编辑

Oracle命令类别

摘要: Oracle命令类别:数据操纵语言:DML: select; insert; delete; update; merge.数据定义语言:DDL: create; alter; drop; truncate; rename; comment.事务控制语言:TCL: commit; rollback; 阅读全文

posted @ 2018-06-11 10:16 小孩没穿鞋 阅读(109) 评论(0) 推荐(0) 编辑

2018年6月10日

jsop之---实现过程

摘要: JSONP(JSONP - JSON with Padding是JSON的一种“使用模式”),利用script标签的src属性(浏览器允许script标签跨域) 跨域访问,非同源访问 <!DOCTYPE html><html><head lang="en"> <meta charset="UTF-8 阅读全文

posted @ 2018-06-10 20:59 小孩没穿鞋 阅读(117) 评论(0) 推荐(0) 编辑

ajax之---上传图片和预览

摘要: views.py index.html <!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>Title</title> <style> .btn{ display: inline-block; padding: 5p 阅读全文

posted @ 2018-06-10 19:24 小孩没穿鞋 阅读(170) 评论(0) 推荐(0) 编辑

ajax之---上传文件

摘要: “伪”ajax向后台提交文件 <iframe style="display: none" id="iframe1" name="ifra1"></iframe> <form id="fm1" action="/ajax1.html" method="POST" enctype="multipart/ 阅读全文

posted @ 2018-06-10 17:40 小孩没穿鞋 阅读(97) 评论(0) 推荐(0) 编辑

ajax之---“伪”ajax

摘要: views.pydef ajax1(request): ret={'status':'true','message':'successful'} return HttpResponse(json.dumps(ret))<h2>基于Ifram和form的伪ajax</h2><iframe id="i1 阅读全文

posted @ 2018-06-10 11:59 小孩没穿鞋 阅读(152) 评论(0) 推荐(0) 编辑

2018年6月9日

ajax之---原生ajax

摘要: 原生ajax,基于XMLHttpRequest对象来完成请求 <!DOCTYPE html><html><head lang="en"> <meta charset="UTF-8"> <title></title></head><body> <h1>XMLHttpRequest - Ajax请求</ 阅读全文

posted @ 2018-06-09 22:49 小孩没穿鞋 阅读(114) 评论(0) 推荐(0) 编辑

pycharm安装模块方法

摘要: 一. 打开pycharm 二. 点开file 三. 点击Settings,点击Project Interpreter,选择右上角+ 四. 进入后,在搜索框搜索需要安装的模块,选中安装 击Project Interpreter 阅读全文

posted @ 2018-06-09 20:00 小孩没穿鞋 阅读(814) 评论(0) 推荐(0) 编辑

2018年6月7日

mongodb查询语句与sql语句对比

摘要: 左边是mongodb查询语句,右边是sql语句。对照着用,挺方便。 db.users.find() select * from users db.users.find({"age" : 27}) select * from users where age = 27 db.users.find({"u 阅读全文

posted @ 2018-06-07 14:16 小孩没穿鞋 阅读(154) 评论(0) 推荐(0) 编辑

2018年6月5日

python模块之----subprocess

摘要: 以上执行shell命令的相关的模块和函数的功能均在 subprocess 模块中实现,并提供了更丰富的功能。 (1) call 执行命令,返回状态码(命令正常执行返回0,报错则返回1) (2) check_call 执行命令,如果执行成功则返回状态码0,否则抛异常 (3) check_output 阅读全文

posted @ 2018-06-05 15:19 小孩没穿鞋 阅读(269) 评论(0) 推荐(0) 编辑

上一页 1 ··· 5 6 7 8 9 10 11 下一页

导航