從A表更新資料到B表

2021-06-04 17:24:26 字數 324 閱讀 5331

update (select t.report_3code as a, b.report_3code as b

from branch@remote_run t, branch b

where b.branch_code = t.branch_code)

set b = a

將a表中的report_3code欄位更新到b表中。

注意:此處一定要使用別名,否則會出錯。

select utl_inaddr.get_host_address, utl_inaddr.get_host_name from dual

查詢資料庫的ip位址。

Mysql A表 資料更新 B表

1.下面這個語句會拷貝表結構到新錶newadmin中。不會拷貝表中的資料 create table newadmin like admin 2.下面這個語句會拷貝資料到新錶中。注意 這個語句其實只是把select語句的結果建乙個表。所以newadmin這個表不會有主鍵,索引。create table...

Mysql A表 資料更新 B表

1.下面這個語句會拷貝表結構到新錶newadmin中。不會拷貝表中的資料 create table newadmin like admin 2.下面這個語句會拷貝資料到新錶中。注意 這個語句其實只是把select語句的結果建乙個表。所以newadmin這個表不會有主鍵,索引。create table...

插入資料a表到b表

insert into p web p p.tid,p.title,p.fileurl,p.columnid,p.columnname select l.tid,l.linkname,l.linkurl,3033 as columnid from p link l where l.columnid ...