/*Write a query to display all the columns from salesman table.*/ /*SELECT [DISTINCT] [.] |*| [AS ],... FROM | [[AS] ] [WHERE ] [GROUP BY [.],... [HAVING ] ] [ORDER_BY | [ASC | DESC],... ];*/ SELECT * FROM salesman;