HTML5 HTML5有哪些新特性: 1. 拖拽释放(Drag and drop) API 2. 语义化更好的内容标签(header,nav,footer,aside,article,section) 3. 音频、视频API(audio,video) 4. 画布(Canvas) API 5. 地理( ...
分类:
其他好文 时间:
2020-04-18 18:59:02
阅读次数:
83
插入数据 DROP PROCEDURE IF EXISTS test3;DELIMITER //create procedure test3()begin DECLARE i int default 12345678; DECLARE count int default 0;while count< ...
分类:
其他好文 时间:
2020-04-18 17:14:56
阅读次数:
53
1. cursor:auto; 默认 2. cursor:crosshair; 加号 3. cursor:text; 文本竖标 4. cursor:wait; 等待 5. cursor:help; 帮助 6. cursor:progress; 过程 7. cursor:inherit; 继承 8. ...
分类:
其他好文 时间:
2020-04-16 00:34:57
阅读次数:
153
--行转列小实例 --创建测试表 if object_id(N'test', N'U') is not null drop table test go with PivotTable as ( select 'xxx' as czy, '点赞' as czlx, 2 as num union all ...
分类:
其他好文 时间:
2020-04-14 22:58:12
阅读次数:
92
1 4.6.1 分区表基本操作 2 1.引入分区表(需要根据日期对日志进行管理) 3 /user/hive/warehouse/log_partition/20170702/20170702.log 4 /user/hive/warehouse/log_partition/20170703/2017 ...
分类:
其他好文 时间:
2020-04-13 22:23:13
阅读次数:
56
Data Definition Language Statements Data definition language (DDL) statements define, alter the structure of, and drop schema objects. DDL statements ...
分类:
数据库 时间:
2020-04-13 16:52:20
阅读次数:
299
演示demo表: student表 DROP TABLE IF EXISTS `student`; CREATE TABLE `student` ( `stuid` varchar(16) NOT NULL COMMENT '学号', `stunm` varchar(20) NOT NULL COM ...
分类:
数据库 时间:
2020-04-13 16:50:15
阅读次数:
101
删除表 SQL> drop table c##sapr3.test; Table dropped. SQL> select count(*) from c##sapr3.test; select count(*) from c##sapr3.test * ERROR at line 1: ORA-0 ...
分类:
数据库 时间:
2020-04-13 01:02:55
阅读次数:
83
用户管理 # 创建用户 create user '用户名'@'IP地址' identified by '密码'; create user 'steven'@localhost identified by '123456'; 删除用户 drop user '用户名'@'IP地址'; drop user ...
分类:
数据库 时间:
2020-04-11 00:04:40
阅读次数:
85
当我们遇到大表清空时,会有几种相应的操作方法(表player):1.truncatetableplayer;2.创建新表、rename表、然后直接drop老表3.创建新表、rename表、创建老表硬链接、slowrm进行大文件删除。注:创建新表时,需要提前和开发沟通用来确认新表自增ID起始位置下面将是几种方案的操作步骤以及优劣势1.操作步骤:*truncatetableplayer;优势:操作简单
分类:
数据库 时间:
2020-04-10 22:23:39
阅读次数:
181