Files
GMW/GMW_DB/dbo/Stored Procedures/stp_getBilanceByCodCS.sql
Samuele Locatelli a6d7ea0b2f Import iniziale DB, GMW
versione TK 2.4
inclusione schema voc x tabella lingue e vocabolario
2014-02-20 09:54:57 +01:00

20 lines
350 B
Transact-SQL

/***************************************
* STORED stp_getBilanceByCodCS
*
* ottiene l'elenco delle bilance dato codice company/sito
*
* Steamware, S.E.L.
* mod: 2010.04.28
*
****************************************/
create PROCEDURE [dbo].[stp_getBilanceByCodCS]
(
@CodCS VARCHAR(2)
)
AS
SELECT * FROM AnagBilance
WHERE CodCS = @CodCS
RETURN