I am trying the specify the query on the Datasource in dataflow as show on the below screen capture.

But it is throwing an error, is this the correct way of specifying the columns?

Error:

at Source '': Incorrect syntax near ''. SQL Server error encountered while reading from the given table or while executing the given query
This error message is because of the syntax error in the SQL query.
comma(,) is missing between email and *.
This is the reason for your error.at Source 'source1': The column 'name' was specified multiple times for 'T_***'.
name is specified explicitly in the query also. It will result in two columns with the same name, and this is not allowed in dataflow.select * from <table-name> or select<column-name[s]> from <table-name> as a query in Query text box.