随笔分类 -  Review

摘要:1.oracle: 1.1 增:insert into 删:delete from 改:update tablename set 查:select * from 1.2 聚合函数 max,min,avg,ceil,floor,round 1.3 order by:必须要写在sql语句的最后(where之... 阅读全文
posted @ 2017-08-08 20:06 咫尺天涯是路人丶 阅读(245) 评论(0) 推荐(0)
摘要:Important: 1.id选择器,class选择器,标签选择器: $("#id"); $(".class"); $("标签"); 2.jQuery的定义: 引入jQuery文件 >jquery-3.2.1.min.js <script type="text/javascript" src="jq 阅读全文
posted @ 2017-07-14 21:39 咫尺天涯是路人丶 阅读(236) 评论(0) 推荐(0)
摘要:20170708_review: 1.oracle: 对表的操作: 使用命令行建立一张表:create table 表名 (列名 列名的类型 primarty key, ....); alter table 表名 add constraints pk_表名_列名 primary key(需要建立的主 阅读全文
posted @ 2017-07-08 20:16 咫尺天涯是路人丶 阅读(351) 评论(0) 推荐(0)