Показать сообщение отдельно
Старый 11.10.2004, 16:14   #8  
George Nordic is offline
George Nordic
Модератор
Аватар для George Nordic
Злыдни
 
4,480 / 1255 (50) ++++++++
Регистрация: 17.12.2003
Адрес: Moscow
Записей в блоге: 9
А так?

PHP код:
static void JobRec(Args _args)
{
    taxOnItem taxOnItem;
    taxGroupData taxGroupData;
    taxTable taxTable;
    ;

    while select RecId,TaxCode from taxOnItem
        where taxOnItem
.TaxItemGroup == 'НДС18'
    join RecId,TaxCode from taxGroupData
        where taxGroupData
.TaxCode  == taxOnItem.TaxCode &&
              taxGroupData.TaxGroup == ''
    join RecId from taxTable
        where taxTable
.TaxCode == taxGroupData.TaxCode
    
{
        info('123');
    }