How to convert MySQL query to equivalent Oracle sql Query

Uday Kiran :

I want to convert below MY SQL query to Oracle SQL query, could someone please help ?

Below instructor table is parent entity, and instructor_detail table child entity.

CREATE TABLE `instructor_detail` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `youtube_channel` varchar(128) DEFAULT NULL,
  `hobby` varchar(45) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=latin1;

CREATE TABLE `instructor` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `first_name` varchar(45) DEFAULT NULL,
  `last_name` varchar(45) DEFAULT NULL,
  `email` varchar(45) DEFAULT NULL,
  `instructor_detail_id` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `FK_DETAIL_idx` (`instructor_detail_id`),
  CONSTRAINT `FK_DETAIL` FOREIGN KEY (`instructor_detail_id`) REFERENCES `instructor_detail` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=latin1;

I have tried below but not working

    CREATE TABLE instructor (
      id numeric(11) NOT NULL PRIMARY KEY,
      first_name varchar(45) DEFAULT NULL,
      last_name varchar(45) DEFAULT NULL,
      email varchar(45) DEFAULT NULL,
      instructor_detail_id  numeric(10) not null
    );

    CREATE TABLE instructor_detail (
      id NUMERIC(11) NOT NULL PRIMARY KEY,
      youtube_channel varchar(128) DEFAULT NULL,
      hobby varchar(45) DEFAULT NULL,
      CONSTRAINT fk_instructor
        FOREIGN KEY (instructor_detail_id)
        REFERENCES instructor(instructor_detail_id)
    );

error : Error report -
ORA-00904: "INSTRUCTOR_DETAIL_ID": invalid identifier
00904. 00000 -  "%s: invalid identifier"
*Cause:    
*Action:

Appreciated

Gordon Linoff :

Oracle 11 doesn't support auto-generated primary keys, so you need a trigger for that. And there are some different rules on cascading constraints.

But otherwise:

CREATE TABLE instructor_detail (
  id int PRIMARY KEY,
  youtube_channel varchar2(128) DEFAULT NULL,
  hobby varchar2(45) DEFAULT NULL
) ;

CREATE TABLE instructor (
  id int NOT NULL PRIMARY KEY,
  first_name varchar2(45) DEFAULT NULL,
  last_name varchar2(45) DEFAULT NULL,
  email varchar2(45) DEFAULT NULL,
  instructor_detail_id int,
  CONSTRAINT FK_DETAIL FOREIGN KEY (instructor_detail_id) REFERENCES instructor_detail (id) 
) ;

CREATE INDEX idx_instructor_instruct_detail_id ON instructor(instructor_detail_id);

Here is a db<>fiddle.

Guess you like

Origin http://43.154.161.224:23101/article/api/json?id=372200&siteId=1