Oracle Insert via Select from multiple tables where one table may not have a row

前端 未结 6 1676
野性不改
野性不改 2020-12-25 08:56

I have a number of code value tables that contain a code and a description with a Long id.

I now want to create an entry for an Account Type that references a number

6条回答
  •  轮回少年
    2020-12-25 09:55

    insert into received_messages(id, content, status)
        values (RECEIVED_MESSAGES_SEQ.NEXT_VAL, empty_blob(), '');
    

提交回复
热议问题