a6d7ea0b2f
versione TK 2.4 inclusione schema voc x tabella lingue e vocabolario
22 lines
445 B
Transact-SQL
22 lines
445 B
Transact-SQL
/***************************************
|
|
* STORED stp_cellaGetByCodCellaLike
|
|
*
|
|
* ottiene l'elenco delle celle (1...) dato codice parziale (LIKE search)
|
|
*
|
|
* Steamware, S.E.L.
|
|
* mod: 2010.07.23
|
|
*
|
|
****************************************/
|
|
CREATE PROCEDURE [dbo].[stp_cellaGetByCodCellaLike]
|
|
(
|
|
@CodCella VARCHAR(50),
|
|
@CodCS VARCHAR(2)
|
|
)
|
|
AS
|
|
|
|
SELECT *
|
|
FROM Celle
|
|
WHERE (CodCS = @CodCS) AND (CodCella LIKE '%' + @CodCella + '%')
|
|
|
|
RETURN
|