Chinaunix

标题: 求语句 [打印本页]

作者: liudan182    时间: 2007-07-17 10:27
标题: 求语句
系统fedora6 MYSQL5.0.22

radcheck 表 username  ipaddr              2字段
radacct 表 username CallingStationId   2字段

现将2表username相同的记录,从CallingStationId  传到ipaddr 中.

我mysql> update a set a.ipaddr=b.CallingStationId from radcheck a,radacct b where a.username=b.username;
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'from radcheck a,radacct b where a.username=b.username' at line 1

mysql> update radcheck set radcheck.ipaddr=radacct.CallingStationId where radcheck.username=radacct.username ;
ERROR 1054 (42S22): Unknown column 'radacct.username' in 'where clause'
mysql>

那具体该怎么写??/
作者: fnems    时间: 2007-07-17 11:32
测试用代码:

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);

作者: liudan182    时间: 2007-07-17 11:33
谢谢,我试一下.
作者: liudan182    时间: 2007-07-17 15:01
又出现一个问题,拿fnems的测试用例来说吧.
      就是act 表中存在user相同的好几条记录,表act还存在一个时间字段(time).记录上线时间
现在的目的就是更新chk表中的ip字段,将act 中user相同的,time时间为最新时间的那个sttid付
给 chk表中的ip字段.

mysql> update radcheck as x set ipaddr=(select CallingStationId from radacct as y where x.username=y.username) where x.username in (select username from radacct) and x.sbm='1' and ipaddr='';
ERROR 1242 (21000): Subquery returns more than 1 row
作者: fnems    时间: 2007-07-17 15:33
嗯,看看这样行了吧?  自己感觉效率有点低,呵呵,等待版内各高手的答案

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);


还有,没有用楼主的命名实例,是为了少敲点键盘,就麻烦楼主自己改一改语句吧

[ 本帖最后由 fnems 于 2007-7-17 15:35 编辑 ]
作者: Namelessxp    时间: 2007-07-17 16:10
UPDATE radcheck,radacct SET radcheck.ipaddr=radacct.CallingStationId WHERE radcheck.username=radacct.username;

ERROR 1054 (42S22): Unknown column 'radacct.username' in 'where clause'

SQL语句中关键字大写是个好习惯,不看错误提示的人做不好程序员
作者: liudan182    时间: 2007-07-17 16:24
再此非常谢谢fnems 的帮忙, 我自己也试着写了一个.
update chk as x
set ip=(select sttid from (select user,sttid,max(time) time from act group by user)
as y where x.user=y.user) where x.user in (select user from act);

这个语句是要写在配置文件里面的,他是要每十分钟执行一次,所以我想问一下,哪个执行起来更快,不那么耗资源,或者还有没有更简洁更好的写法,希望帮帮我.

还有就是以前一直是用MSSQL,现在要用MYSQL,虽然基本的语句都类似,但是还有不同的,所以就是想了解一下,这两种数据库在语句上有那些不同?写的时候应该注意什么?或者有什么好的忠告???
作者: liudan182    时间: 2007-07-17 17:01
标题: 回复 #6 Namelessxp 的帖子
但是我大写了还是会这样,这应该就是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'
作者: lizheng83    时间: 2007-07-17 17:04
原帖由 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 ...

这样写是在做什么?
作者: sunnyfun    时间: 2007-07-17 17:09
记住一条,用了子查询就避免用in,因为效率很低。

如何避免参见:

http://bbs.chinaunix.net/viewthread.php?tid=960762&extra=page%3D2
作者: Namelessxp    时间: 2007-07-17 19:42
原帖由 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'


兄弟,你真的看了我写的那条语句了吗?


MySQL 多表更新必须列出所有涉及的表名,不然,你让后面的子句去哪里找数据表
SQL Server 不该在这问
作者: yueliangdao0608    时间: 2007-07-18 09:58
LZ的是MSSQL的语法。MYSQL的应该是这样
update radcheck,radacct set radcheck.ipaddr=radacct.CallingStationId where radcheck.username = radacct.username;

[ 本帖最后由 yueliangdao0608 于 2007-7-18 10:01 编辑 ]
作者: liudan182    时间: 2007-07-18 19:48
哦,了解了,谢谢大家的帮忙.
作者: fnems    时间: 2007-07-19 08:48
原帖由 liudan182 于 2007-7-17 16:24 发表

虽然基本的语句都类似,但是还有不同的,所以就是想了解一下,这两种数据库在语句上有那些不同?


说实话,现在在学校学的不是计算机类专业,自己也只是自学了半年的数据库……之前没怎么接触过,呵。

从一个网站上看到“select * from result limit 2000,10 可以轻松获取第2000到2010条数据,而SQLServer没有此类语法”,感觉...很有意思。




欢迎光临 Chinaunix (http://bbs.chinaunix.net/) Powered by Discuz! X3.2