美好白羊

文章
7
资源
0
加入时间
3年0月21天

mysql进阶

1、as 与 distinctas关键字使用as给字段起别名select id as 序号, name as 名字, gender as 性别 from student;通过as给表起别名select s.name, s.id, s.gender from student as s ;消除重复 distinctdistinct 可以消除重复的行select dist...

Hadoop系统操作类FileSystem

FileSystem类,Hadoop文件API的起点,是一个一个与文件系统交互的抽象类,其对HDFS的操作由不同的具体实现子类来实现。通过下面的方法来获取一个具体的FileSystem实例:获取用于HDFS系统的实例:public static FileSystem get(Configuration conf) throws IOException获取用于本地文件系统的实例:public