First of all thank you to read me and try to help me.
I am starting to working with temporal database, exactly with bitemporal database with the next structure:
CREATE TABLE poblat (
dni VARCHAR2(9),
name VARCHAR(12),
tiv DATE,
tfv DATE,
tit TIMESTAMP,
tft TIMESTAMP,
PRIMARY KEY (dni,tiv, tit)
);
I would to know how can i do a query using a clause like after, before or include.
For example i do this:
SELECT nombre, tiv, tfv FROM poblat
WHERE (tiv, tfv) INCLUDE (to_date('31/12/2014'), to_date('31/12/2016'));
But sql developer says that im using an "invalid relational operator".
Thank you for your attention and for your help.