Вложенные запросы

Red Alert

Новичок
Вложенные запросы

Приветствую,
имеется в наличии MySQL сервер '4.0.21-Max'
и не работает следующий запрос. Но если внутренние селекты запустить отдельно, то нормально обрабатывает.

Ошибка: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 'SELECT CASE when o.otatype = 'fulltrac
номер ошибки 1064

Из ошибки следует, что синтаксин неправильный, но если я отдельно запускаю этот скрипт (селект) , то все обрабатывает.

Может кто сталкивался ?????

select tl.id_contenido,tl.Tipo,tl.Titulo,tl.Discografica,sum(tl.Cantidad) from
(
SELECT
CASE
when o.otatype = 'fulltrack' THEN SUBSTRING(o.reference,53,7)
WHEN o.otatype = 'truetones' THEN SUBSTRING(o.reference,40)
WHEN o.otatype = 'ringtones' THEN SUBSTRING(o.reference,42)
WHEN o.otatype = 'wallpapers' THEN SUBSTRING(o.reference,40)
WHEN o.otatype = 'video' THEN SUBSTRING(o.reference,41)
else o.otatype
end as id_contenido,
o.otatype as Tipo,
o.titlesel as Titulo,
o.rights as Discografica,
count(*) as Cantidad
FROM BOB_cdr_200906 b
LEFT JOIN ota0906 o ON o.id = TRIM(LEADING '0' FROM SUBSTRING(b.rq_object_id,7,9))
WHERE
b.rq_tstamp >= '2009-06-29 04:00:00'
and b.rq_object_id != '-1'
and b.rs_status = 'ack'
and o.titlesel is not null and o.rights is not null and o.titlesel <> '' and o.rights <> ''
group by id_contenido
UNION
SELECT
CASE
when o.otatype = 'fulltrack' THEN SUBSTRING(o.reference,53,7)
WHEN o.otatype = 'truetones' THEN SUBSTRING(o.reference,40)
WHEN o.otatype = 'ringtones' THEN SUBSTRING(o.reference,42)
WHEN o.otatype = 'wallpapers' THEN SUBSTRING(o.reference,40)
WHEN o.otatype = 'video' THEN SUBSTRING(o.reference,41)
else o.otatype
end as id_contenido,
o.otatype as Tipo,
o.titlesel as Titulo,
o.rights as Discografica,
count(*) as Cantidad
FROM BOB_cdr_200907 b
LEFT JOIN ota0907 o ON o.id = TRIM(LEADING '0' FROM SUBSTRING(b.rq_object_id,7,9))
WHERE
b.rq_tstamp <= '2009-07-05 3:59:59'
and b.rq_object_id != '-1' and b.rs_status = 'ack'
and o.titlesel is not null and o.rights is not null and o.titlesel <> '' and o.rights <> ''
group by id_contenido
) as tl group by tl.id_contenido
;
 

Mols

Новичок
на mysql.com забанили?
http://dev.mysql.com/doc/refman/4.1/en/subqueries.html
-----------

Starting with MySQL 4.1, all subquery forms and operations that the SQL standard requires are supported, as well as a few features that are MySQL-specific.

With MySQL versions prior to 4.1, it was necessary to work around or avoid the use of subqueries. In many cases, subqueries can successfully be rewritten using joins and other methods.

-----------
 

Red Alert

Новичок
Да вроде нет, не забанили поэтому я и использовал
http://dev.mysql.com/doc/refman/4.1/en/unnamed-views.html

-~{}~ 07.07.09 16:49:

Теперь вроде понятно, буду искать альтернативу
 
Сверху