-
2018-05-24 14:12:13
-
2018-05-25 15:15:47
-
2018-06-05 13:50:32
-
2018-05-29 16:09:56
- PHP匿名函数和闭包的总结
- 匿名函数匿名函数(Anonymous function),也叫闭包函数(closures),允许临时创建一个没有指定名称的函数,最经常用作回调函数(callback)参数的值。匿名函数的实现匿名函数是目前是通过Closure类来实现,匿名函数会产生这个类的对象。
-
3047
-
2018-05-18 14:50:20
- oracle expdp导出和impdp导入使用方法
- 本篇介绍一下oracle expdp导出、impdp导入的使用方法 准备工作 导出-expdp 导入-impdp 导出-expdp参数说明 导入-impdp参数说明 准备工作 oracle中的expdp导出、impdp导入的使用之前,都得先完成以下三个步骤 第一步 以管理员身份,创建逻辑目录 create direc
-
13079
-
2018-05-15 11:53:36
-
2018-05-16 16:56:23
-
2018-05-24 09:12:09
-
2018-05-26 14:50:23
-
2018-05-17 16:05:07
- sql创建表索引 create index()语句
- sql创建表索引 create index()语句mssql server 方法语法:create [索引类型] index 索引名称on 表名(列名)with fillfactor = 填充因子值0~100go实例create nonclustered index ix_test_tname --创建一个非聚集索引on test(tname)
-
3980