How to combine two tables by means of sql queries? There is such a table:
CREATE TABLE [dolgnosty] ( [id] INTEGER PRIMARY KEY, [id_stavka] INTEGER, [dolgnost] VARCHAR(80)); This table should be attached to this:
CREATE TABLE [stavky] ( [id] INTEGER PRIMARY KEY, [id_dolgnost] INTEGER, [id_point] INTEGER, [id_period] INTEGER, [stavka] FLOAT); Those. the dolgnosty table dolgnosty unchanged, and the stavky table stavky changing, but all this should be shown as one table! How to do it?