ALL_CUSTOMERS


<DEFAULT SERVER>   >   <DEFAULT DATABASE>   >   <DEFAULT SCHEMA>   >   ALL_CUSTOMERS   

Name
ID
LNAME

CREATE VIEW ALL_CUSTOMERS (ID, LNAME)
	AS SELECT ID, LNAME
	FROM CUSTOMER



     
Name Types Description
CUSTOMER Table Table
LNAME Column Virtual column

     
Name Types Description
<DEFAULT SCHEMA>.CUSTOMERS.GetAllCustomers.c1 Cursor PLSQL Cursor defined in CUSTOMERS.GetAllCustomers
<DEFAULT SCHEMA>.PRODUCTS.ProductsByCustomer.Select Select Statement select fname,lname, all_products.name, all_products.prod_size, all_products.id, product.n
<DEFAULT SCHEMA>.TRG_ORDER.Select Select Statement select fname, lname, name, prod_size into cust_fname, cust_lname, prod_name, prod_size
<DEFAULT SCHEMA>.PRODUCTS.ProductsByCustomer.Select Select Statement select fname, lname, all_products.name, all_products.prod_size, all_products.id,
<DEFAULT SCHEMA>.CUSTOMERS.GetAllCustomers.c1.Select Select Statement SELECT ID FROM ALL_CUSTOMERS
<DEFAULT SCHEMA>.PRODUCTS.ProductsByCustomer.Select Select Statement select fname, lname, name, prod_size into cust_fname, cust_lname, prod_name, prod_size fro