I am sorry I am newbie and I have this doubt... following is my query.
Select id,item_table.item_name,quantity,
total from Sales
inner join item_table on item_code=id
I take values from two different tables and I need to create an ObservableList
with the ResultSet
to load into TableView
with columns id, name, quantity, sales?
I have two classes:
- sales with field id,quantity and total sales
- item with item_name
Can I do that?