I have basically two views named customerV and productV.
the SQL statement in the customerV view is :
SELECT CUSTOMER_REGISTRATION.SURNAME, CUSTOMER_REGISTRATION.OTHER_NAME, CUSTOMER_REGISTRATION.ADDRESS, RECIEVABLE.DATE,
RECIEVABLE.PHONE#, RECIEVABLE.SERIAL#, RECIEVABLE.CHEQUE
FROM CUSTOMER_REGISTRATION INNER JOIN
RECIEVABLE ON CUSTOMER_REGISTRATION.PHONE# = RECIEVABLE.PHONE#
while the SQL statement in the productV view is :
SELECT PRODUCT, MAKE, MODEL
FROM PRODUCTV
I just want to create a new view called serial_products which would join all the columns of the two views into a single view calledserial_products.

JOINkey going to be? If youJOINthe views, we have to know how they are related. – JNK♦ May 29 '12 at 13:12