标签:cti har gen order val taf top cells value
今天完成了实验任务五-Spark SQL 编程初级实践
(1) 在 MySQL 数据库中新建数据库 sparktest,再建表 employee,包含下列两行数据;
| id | name | gender | age | 
| 1 | Alice | F | 22 | 
| 2 | John | M | 25 | 
mysql> create database sparktest; mysql> use sparktest;
mysql> create table employee (id int(4), name char(20), gender char(4), age int(4));
mysql> insert into employee values(1,‘Alice‘,‘F‘,22); mysql> insert into employee values(2,‘John‘,‘M‘,25);
标签:cti har gen order val taf top cells value
原文地址:https://www.cnblogs.com/baixiaoli/p/12272708.html