由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Fishing版 - 问个数据库问题,即删
相关主题
SNAKEHEAD!!!PFS69ULF, 初体验
【秋鱼肥】 毛鸡哥加小肉条狂诱可爱皮2012 第一钓!(农历)
今天丰收皮皮,花花, whatever不废话,直接发片
【冬鱼肥】毫无悬念的limit2012 第四钓
【冬鱼肥】没完没了的皮皮2012 第五钓, ORPからの手紙
2012 第一钓!【春钓征文】鲥鱼
评论员文章-渔具发烧-附图【春钓征文】换了把新尺量鱼。
2012 第二钓!今年的皮皮记录从这条开始。开心的周末 | 蛇头出没
相关话题的讨论汇总
话题: table1话题: select话题: field1话题: count话题: group
进入Fishing版参与讨论
1 (共1页)
G***G
发帖数: 16778
1
want to create a table like this
select table1.*, count(distinct table1.field1) from table1
but it always pops up an error.
b**s
发帖数: 4571
2
没关系。你留几天都行。
就是尽量不要从菌斑转那些无厘头的东西。
good luck!
G***G
发帖数: 16778
3
thanks.

【在 b**s 的大作中提到】
: 没关系。你留几天都行。
: 就是尽量不要从菌斑转那些无厘头的东西。
: good luck!

L**********1
发帖数: 797
4
if you want to count function,
you need to add something like this: group by field1
so the final SQL looks like below,
select field1, count(field1) from table1 group by field1
t*******y
发帖数: 10477
5
change table1 to table2 and it should work.

【在 G***G 的大作中提到】
: want to create a table like this
: select table1.*, count(distinct table1.field1) from table1
: but it always pops up an error.

b******d
发帖数: 1948
6
no man, you need a 'group by' here, google 'group by' see what ppl say.
If you want select * from table1 + count(column1), you need do a join
also.
select t.*, x.cnt from table1 t inner join (
select column1, count(pk) as cnt from table1
) as x on t.column1 = x.column1
pk is the primarykey,

【在 G***G 的大作中提到】
: want to create a table like this
: select table1.*, count(distinct table1.field1) from table1
: but it always pops up an error.

t*******y
发帖数: 10477
7
你说的是火星话吗?

【在 b******d 的大作中提到】
: no man, you need a 'group by' here, google 'group by' see what ppl say.
: If you want select * from table1 + count(column1), you need do a join
: also.
: select t.*, x.cnt from table1 t inner join (
: select column1, count(pk) as cnt from table1
: ) as x on t.column1 = x.column1
: pk is the primarykey,

b******d
发帖数: 1948
8
Mesa day startin Mars talkin,Yoosa should follow me now, okeeday?
(jar jar binks)

【在 t*******y 的大作中提到】
: 你说的是火星话吗?
b******d
发帖数: 1948
9
yeah, this also works.

【在 L**********1 的大作中提到】
: if you want to count function,
: you need to add something like this: group by field1
: so the final SQL looks like below,
: select field1, count(field1) from table1 group by field1

t*******y
发帖数: 10477
10
你昨天在FH还是ORP钓的?

【在 b******d 的大作中提到】
: Mesa day startin Mars talkin,Yoosa should follow me now, okeeday?
: (jar jar binks)

b******d
发帖数: 1948
11
ORP, FH should be the same deal. These damn fish in the same mood.

【在 t*******y 的大作中提到】
: 你昨天在FH还是ORP钓的?
1 (共1页)
进入Fishing版参与讨论
相关主题
开心的周末 | 蛇头出没【冬鱼肥】没完没了的皮皮
How old are u? - 怎么老是你。2012 第一钓!
一百零一个,花姑娘评论员文章-渔具发烧-附图
花姑娘还是少碰为妙?2012 第二钓!今年的皮皮记录从这条开始。
SNAKEHEAD!!!PFS69ULF, 初体验
【秋鱼肥】 毛鸡哥加小肉条狂诱可爱皮2012 第一钓!(农历)
今天丰收皮皮,花花, whatever不废话,直接发片
【冬鱼肥】毫无悬念的limit2012 第四钓
相关话题的讨论汇总
话题: table1话题: select话题: field1话题: count话题: group