Provide the syntax to perform a distinct operation on a Spark DataFrame in SQL.
To perform a distinct operation on a Spark DataFrame using SQL syntax, you can use the following syntax:
sql SELECT DISTINCT column1, column2 FROM table_name
