Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

i have got a problem with this query.

update table1 as a
left join  (
select count(*) as 'rec' from table2 group by isin having rec<100 )
table2 as h on a.isin=h.isin 
set a.nohist='1' 

i would like to count rows per group, ask if they the count is smaller than 100 an set a flag in table 1.

i get alway an error:

1064 - 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 'as h on a.isin=h.isin set a.nohist='1'' at line 4

could you help me?

thx br

share|improve this question

3 Answers

up vote 0 down vote accepted

You are setting the alias for the subselect result to be table2 and then you "realias" that table2 to h. On top of that you try to join table h and a by isin.

You need to select isin inside the subselect if you want to be able to join against that table with the other two tables.

share|improve this answer
update table1 as a
left join  (
select count(*) as 'rec' from table2 group by isin having rec<100 )
-- here you have that error

check this doc http://dev.mysql.com/doc/refman/5.0/en/join.html

But, why do you want to perform a join if you're updating table1? What do you want to do?

share|improve this answer

But, why do you want to perform a join if you're updating table1? What do you want to do?

i would to set a flag on table1 (a.nohist) where in table2 are less than then 100 rows per isin (key in both tables).

is there a reason without a join?

suunto

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.