文件名称:统计表的行数-android studio 实现手机扫描二维码功能
文件大小:1.18MB
文件格式:PDF
更新时间:2024-07-04 09:30:39
大数据
//(5)统计表的行数 public static void countRows(String tableName)throws IOException{ init(); Table table = connection.getTable(TableName.valueOf(tableName)); Scan scan = new Scan(); ResultScanner scanner = table.getScanner(scan); int num = 0; for (Result result = scanner.next();result!=null;result=scanner.next()){ num++; } System.out.println("行数:"+ num); scanner.close(); close(); } (二)HBase 数据库操作 1. 现有以下关系型数据库中的表和数据,要求将其转换为适合于 HBase 存储的表并插入数 据: 学生表(Student) 学号(S_No) 姓名(S_Name) 性别(S_Sex) 年龄(S_Age) 2015001 Zhangsan male 23 2015003 Mary female 22 2015003 Lisi male 24 课程表(Course) 课程号(C_No) 课程名(C_Name) 学分(C_Credit) 123001 Math 2.0 123002 Computer Science 5.0 123003 English 3.0 选课表(SC) 学号(SC_Sno) 课程号(SC_Cno) 成绩(SC_Score) 2015001 123001 86 2015001 123003 69 2015002 123002 77 2015002 123003 99