4 lines
212 B
SQL
4 lines
212 B
SQL
/*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; |