mercredi 25 mai 2016

Query is not getting executed in sql

I have a query which I want to run and check what result it is giving.

select 
    trl.status_flag, ty.type_desc 
from 
    Inward_Status_Trl trl, type_mst_a ty 
where 
    trl.status_flag = ty.add_iinfo1 
    and ty.type_code = 'S2' 
    and trl.delete_flag = 'N'   
    and Return_flag = '4'
order by 
    sr_no

but what happening here is, it is not getting executed. Just shows the message

Executing query......

I am using SQL Server 2005

Aucun commentaire:

Enregistrer un commentaire