摘要:
1 create database test; 2 use test; 3 4 --创建文件组,对文件进行分类管理 5 alter database test add filegroup Before2013; 6 alter database test add filegroup T2013;... 阅读全文
摘要:
函数本质上是一个有名字的程序块,程序块使得多条语句可以一起执行。变量类型:1、复杂类型:Object、Array等。2、原始类型:String、Integer等。函数参数:1、复杂类型:传递引用。2、原始类型:传递值(拷贝)。函数类型:1、函数声明:在解析的时候,被提升至当前作用域的顶端,永远不要在... 阅读全文