Blue
White
Purple
Green
Red
Orange
Blue Light
White Light
Purple Light
Green Light
Red Light
Orange Light
Hi,Is there a way to list records from two different tables in one page??BR,Mahmoud
On the "Edit SQL query" page, write your own SQL statement taking whatever fields you want from different tables.Following example takes records from "orders" and "customers"SELECTorders.ID, orders.OrderNumber, orders.Customer, customers.CustomerName,customers.Address,customers.CityFROM orders INNER JOIN customers ON orders.Customer = customers.ID