Skip to content

Tag: oracle

ORACLE CREATE TABLE with FOREIGN KEY error

I am a beginner to Oracle and have been having problems creating a table with a foreign key, I have created the parent table region as well and have been receiving the same error. I have researched on W3school and used the same syntax but still no help. Answer Leave “FOREIGN KEY” out, if you want …

APEX get Multiple entries FK

,i dont know what so search for my problem. I think its very simple, but i dont know about that 🙂 I have a Table where i listed all my “Groups/Teams” And then i have a Users Table where i list all the People: I use APEX 18.1 and have a Form with a List of Values, there i can

Problem in creating new table ORA-00906: missing left parenthesis

Here is my instruction : it works on my friend computer ! A ORA-00906: missing left parenthesis Any help ! Answer Please make sure all the “varchar” fields has a length defined. In your second table, it says: date_rdv VARCHAR NOT NULL, which I believe causing the issue, so try to change it into da…