tengo una problema con una funcion
Publicado por jesus (1 intervención) el 29/06/2021 17:19:59
1
2
3
4
5
6
7
8
9
10
11
12
13
create or alter function ufn_cantidad
(@id int)
returns table
as
return(
select cantidad from venta_producto
where venta.id_cliente = @id
);
go
//me marca el identificador venta.id_cliente formado por varias partes no se pudo enlazar
Valora esta pregunta


0