码迷,mamicode.com
首页 >  
搜索关键字:drop    ( 5540个结果
前端面试
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
cursor鼠标指针样式大全
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
hive分区
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
【ORACLE】DDL包括哪些操作
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
Sql 语句中 IN 和 EXISTS 的区别及应用
演示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
[oracle] 闪回误删除表
删除表 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
mysql 查漏补缺
用户管理 # 创建用户 create user '用户名'@'IP地址' identified by '密码'; create user 'steven'@localhost identified by '123456'; 删除用户 drop user '用户名'@'IP地址'; drop user ...
分类:数据库   时间:2020-04-11 00:04:40    阅读次数:85
MYSQL百G大表正确清空方式
当我们遇到大表清空时,会有几种相应的操作方法(表player):1.truncatetableplayer;2.创建新表、rename表、然后直接drop老表3.创建新表、rename表、创建老表硬链接、slowrm进行大文件删除。注:创建新表时,需要提前和开发沟通用来确认新表自增ID起始位置下面将是几种方案的操作步骤以及优劣势1.操作步骤:*truncatetableplayer;优势:操作简单
分类:数据库   时间:2020-04-10 22:23:39    阅读次数:181
5540条   上一页 1 ... 35 36 37 38 39 ... 554 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!