由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Database版 - a simpler sQL question, high help please!!!!
相关主题
a complex sql query, high hand help!!!请问那种很复杂的sql语句,有什么套路吗?
SSIS package upgrade issue请问mysql 里如何创建超宽表
Help on migrating oracle to db2, outerjoin这个sql插入如何操作?
query: in sql server 2005:)刚刚写代码一激动竟然忘了放附件,再来一次。
请教高手,包子谢【$】Home Depot Stok Island Grill $99 tax YMMV
sql的一个问题【$】MD-Products Garage Door Bottom 18ft - $22.79 Lowes YMMV
请教:找出10天内下了超过5次单的customers这样的男朋友,要分手了了么?
请问:有没有什么免费工具提交Data form to SQL?转一只 SONY Z (VPCZ 1390X) (转载)
相关话题的讨论汇总
话题: simpler话题: sql话题: question话题: logid话题: table
进入Database版参与讨论
1 (共1页)
w******n
发帖数: 15
1
ok, a more simpler question:
say i have a table like this
ID LOGID
1 2
1 3
1 4
2 2
2 3
say i have another table that has
ID
1
2
3
4
.
.
how do i count each ID different? means i want to find out
how many LOGID each id has?
s********e
发帖数: 62
2
select ID, count(*)
from ....

【在 w******n 的大作中提到】
: ok, a more simpler question:
: say i have a table like this
: ID LOGID
: 1 2
: 1 3
: 1 4
: 2 2
: 2 3
: say i have another table that has
: ID

a***s
发帖数: 1084
3
hope this works :
CREATE TEMPORARY TABLE tmp (
customerID INT(10) UNSIGNED DEFAULT '1' NOT NULL auto_increment,
statID INT(10) unsigned default '0' NOT NULL,
);
LOCK TABLES log read;
INSERT INTO tmp select customerID , count(*) from log where typeID = 1
group by customerID ;
SELECT custormerID FROM tmp
WHERE statID > 1 ;
UNLOCK TABLES;
DROP TABLE tmp;

【在 w******n 的大作中提到】
: ok, a more simpler question:
: say i have a table like this
: ID LOGID
: 1 2
: 1 3
: 1 4
: 2 2
: 2 3
: say i have another table that has
: ID

1 (共1页)
进入Database版参与讨论
相关主题
转一只 SONY Z (VPCZ 1390X) (转载)请教高手,包子谢
一个简单的SQL查询题sql的一个问题
C++问题请教:找出10天内下了超过5次单的customers
问个题目 C++请问:有没有什么免费工具提交Data form to SQL?
a complex sql query, high hand help!!!请问那种很复杂的sql语句,有什么套路吗?
SSIS package upgrade issue请问mysql 里如何创建超宽表
Help on migrating oracle to db2, outerjoin这个sql插入如何操作?
query: in sql server 2005:)刚刚写代码一激动竟然忘了放附件,再来一次。
相关话题的讨论汇总
话题: simpler话题: sql话题: question话题: logid话题: table