My existing dataflow has column names like "trade show", "contact person" and so on. But when I write SQL code for the transform, I get syntax errors:
SELECT TOP 10 trade show,contact person from my_data_flow
SELECT TOP 10 [trade show],[contact person] from my_data_flow
none of these work. What should the query look like? Apologies from a "newbie" - Thank you all!