摘要: import qrcode codeText = 'https://www.cnblogs.com/houhuilinblogs' img = qrcode.make(codeText) print("文件格式", type(img)) # 命令回显内容:文件格式 <class 'qrcode.im 阅读全文
posted @ 2024-03-06 14:54 HOUHUILIN 阅读(33) 评论(0) 推荐(0) 编辑
摘要: 行转列(多行转一行) 1、创建表,并插入示例数据。 create table students_info( `SNO` string comment '学生编号', `name` string comment '姓名', `DEPART` string comment '选修课程' ) -- 学生信 阅读全文
posted @ 2024-03-06 10:57 HOUHUILIN 阅读(187) 评论(0) 推荐(0) 编辑
摘要: 一、文件存储格式 Hive的文件存储格式包括:textfile、sequence、rcfile、orc、parquet textfile (简介)默认的文件格式,基于行存储。建表时不指定存储格式即为textfile,导入数据时把数据文件拷贝到hdfs不进行处理。 (优点)便于和其他工具(pig,gr 阅读全文
posted @ 2024-03-06 10:40 HOUHUILIN 阅读(11) 评论(0) 推荐(0) 编辑