You are on page 1of 1

1.

INSERT INTO offices


(officeCode,city,phone,addressLine1,addressLine2,state,country,postalCode,territory) 

VALUES('8','dumai','+62 838 1988 8190','Mundam','level 8','M YUSUF','DMI','22855','Indonesia');

2. UPDATE  customers SET customerName='Atelier grapihique' WHERE customerNumber='103';

UPDATE  customers SET customerName='Signal Gift Stores' WHERE customerNumber='112';

UPDATE  customers SET customerName='Australian Collectors, Co.' WHERE customerNumber='114'

UPDATE  customers SET customerName='Baane Mini Imports' WHERE customerNumber='121'

UPDATE  customers SET customerName='Herkku Gifts' WHERE customerNumber='129'

3. SELECT * FROM employees WHERE firstName LIKE "A%"

4. SELECT employeeNumber AS ID_karyawan,CONCAT (firstName,lastName)AS

Nama_Karyawan,email,jobTitle AS Pangkat FROM employees;

5. SELECT productCode AS Kode,productName AS Nama_produk,productVendor AS


(quantityInStock*buyPrice) AS Total FROM products;

You might also like