Hello,I am new in sql and I have to describe what does this query:SELECT rec_header.id, rec_header.[name], rec_header.description, rec_header.version, rec_header.product_code, typ_article.short_name, rec_header.target_instance_id, rec_typ_status.[name]FROM rec_headerLEFT OUTER JOIN typ_article ON rec_header.product_code = typ_article.code INNER JOIN rec_typ_status ON rec_header.signature_status =rec_typ_status.idWHERE (rec_header.id = @id OR @id IS NULL)ORDER BY rec_header.[name]
I would appreciate your help!