Is it possible to create view with row number ?
CREATE VIEW view_table
AS SELECT a.entity_id, a.firstname, a.lastname,
b.vacation_start_day, b.vacation_end_day
FROM customer_info_table a, customer_vacations b
Is it possible to create view with row number ?
CREATE VIEW view_table
AS SELECT a.entity_id, a.firstname, a.lastname,
b.vacation_start_day, b.vacation_end_day
FROM customer_info_table a, customer_vacations b