create table chk( user varchar(8) not null, ip char(15) not null ); create table act( user varchar(8) not null, sttid char(15) not null ); insert into act values ('tom','1.1.1.1'), ('James','1.1.1.2'), ('Peter','1.1.1.3'), ('Joe','1.1.1.3'); insert into chk values ('tom',''), ('James',''), ('Peter',''), ('Robot',''); update chk as x set ip=(select sttid from act as y where x.user=y.user) where x.user in (select user from act); |
create table chk( user varchar(8) not null, ip char(15) not null ); create table act( user varchar(8) not null, sttid char(15) not null, time int not null ); insert into act values ('tom','1.1.1.1',1), ('tom','1.1.1.6',2), ('tom','1.1.1.9',4), ('James','1.1.1.2',1), ('Peter','1.1.1.3',1), ('Joe','1.1.1.4',1); insert into chk values ('tom',''), ('James',''), ('Peter',''), ('Robot',''); select * from act where (user,time) in (select user,max(time) from act group by user); -- 这样select的话,保证选出来的子集都是“时间最大的用户纪录” update chk as x set ip=(select sttid from act as y where x.user=y.user and (user,time) in (select user,max(time) from act group by user) ) where x.user in (select user from act); |
ERROR 1054 (42S22): Unknown column 'radacct.username' in 'where clause'
原帖由 liudan182 于 2007-7-17 17:01 发表
但是我大写了还是会这样,这应该就是sql server和mysql 的区别吧.
mysql> update radcheck set radcheck.ipaddr=radacct.CallingStationId where radcheck.UserName=radacct.UserName;
ERROR 1054 (42S22): Un ...
原帖由 liudan182 于 2007-7-17 17:01 发表
但是我大写了还是会这样,这应该就是sql server和mysql 的区别吧.
mysql> update radcheck set radcheck.ipaddr=radacct.CallingStationId where radcheck.UserName=radacct.UserName;
ERROR 1054 (42S22): Unknown column 'radacct.UserName' in 'where clause'
欢迎光临 Chinaunix (http://bbs.chinaunix.net/) | Powered by Discuz! X3.2 |