Column.Like(String) Method

Definition

SQL like expression. Returns a boolean column based on a SQL LIKE match.

public Microsoft.Spark.Sql.Column Like (string literal);
member this.Like : string -> Microsoft.Spark.Sql.Column
Public Function Like (literal As String) As Column

Parameters

literal
String

The literal that is used to compute the SQL LIKE match

Returns

New column after applying the SQL LIKE match

Applies to