2025-03-19 16:38:57 +08:00

11 lines
217 B
SQL

select * from HmbXyxInfo;
select * from HmbXyxInfo_Update;
select a.*
from HmbXyxInfo a,
HmbXyxInfo_Update b
where a.xyxNo = b.xyxNo;
/*
insert into HmbXyxInfo_Update select xyxNo, sysdate() from HmbXyxInfo;
*/