11 lines
217 B
MySQL
Raw Normal View History

2025-03-14 11:37:33 +08:00
2025-03-19 16:38:57 +08:00
select * from HmbXyxInfo;
2025-03-14 11:37:33 +08:00
select * from HmbXyxInfo_Update;
select a.*
from HmbXyxInfo a,
HmbXyxInfo_Update b
2025-03-19 16:38:57 +08:00
where a.xyxNo = b.xyxNo;
/*
insert into HmbXyxInfo_Update select xyxNo, sysdate() from HmbXyxInfo;
*/