基础

  1. spark.sql("create database myDB")

  1. spark.sql("create table mytab( 列名 类型 , ...... )")
  1. spark.sql("drop database myDB")
  1. spark.sql("drop table mytab")
  1. spark.sql("show databases")
  1. spark.sql("show tables")
  1. spark.sql("use myDB")

查询

rank over()

rank over( partition by 字段名 order by 列名 )

分区
partition by 字段名

排序
oreder by 字段名 默认升序 / 降序 desc

例子:
image.png