Copy table row and return insert ID on PHP Programming with Oracle Database -


i have problem returning inserted id when copying data auto increment id (php programming oracle database)

here code :

$sql = "insert z_tbl_ad_pp ppa (ppa.id,ppa.orgid,ppa.vendorid,ppa.start_date,ppa.status)     select '',ppb.orgid,ppb.vendorid,ppb.start_date,'1'     z_tbl_ad_pp ppb ppb.id='$ppid' returning id :id";  $stid = oci_parse($this->db_connect, $sql);  oci_bind_by_name($stid,":id",$id,-1,oci_b_int);  $r = oci_execute($stid);  $inserted_id=$id;  

here error message:

oci_execute(): ora-00933: sql command not ended


Comments

Popular posts from this blog

Is there a better way to structure post methods in Class Based Views -

performance - Why is XCHG reg, reg a 3 micro-op instruction on modern Intel architectures? -

jquery - Responsive Navbar with Sub Navbar -