/*Write a SQL statement to display the commission with the percent sign ( % ) with salesman ID, name and city columns for all the salesmen.*/ SELECT salesman_id,name,city,'%',commission*100 FROM salesman;