| Oracle FAQ | Your Portal to the Oracle Knowledge Grid | |
Home -> Community -> Usenet -> c.d.o.misc -> SQL Server to ORACLE syntax
I need to convert the following view from SQL Server to ORACLE
Can anybody show me the oracle equivalent?
CREATE VIEW Survey_option_answers_by_instance
AS
SELECT
Survey_Responses.Survey_response_id, Survey_Questions.Survey_questions_text_label, Survey_Questions.Survey_questions_sequence_id, Survey_Question_Options.Survey_question_options_sequence_id, Survey_Responses.Survey_instance_id,
Survey_Responses INNER JOIN
Survey_Questions ON
Survey_Responses.Survey_instance_id =
Firms_by_response ON
Survey_Responses.Survey_response_id =
Survey_Question_Options ON
Survey_Questions.Survey_questions_id =
Survey_Question_Options.Survey_questions_id ON
Survey_Answers.Survey_question_option_id =
Survey_Question_Options.Survey_question_options_id
AND Survey_Answers.Survey_response_id =
![]() |
![]() |