Write The SQL Statements For The Following Queries
Write The SQL Statements For The Following Queries
List the name and hire date of anyone with sales over 50000.
Query:
Select SapRepName,HireDate
from SalesRep
where Sales>50000;
Show me the result if I raised each Person’s quota by 3% of their year to date
sales.
Query:
Update SalesRep
Set Quota=Quota+(Sales*0.03);
Select * from SalesRep;