A single asterisk * in the SELECT clause returns the list of fields for each event.
To return specific fields for each event, specify a comma-separated list of fields. Optionally, each field_expression can be aliased to a label using the AS construct.
Use the DISTINCT qualifier to return unique combinations of the specified field values. Ifno limit specified, the top ten results by count are returned. See LIMIT Clause. DISTINCT can not be applied to a wild card SELECT query, such as
SELECT DISTINCT *
String values must be surrounded by either single quotes or double quotes, such as 'hello' and "hello".