{@code alias = RANK rel ( BY (col_ref) (ASC|DESC)? ( DENSE )? )?;}alias - output alias RANK - operator rel - input relation BY - operator col_ref - STAR or Column References or a range in the schema of rel DENSE - dense rank means a sequential value without gasp among different tuple values.
|
|
|
|