El otro dia mande un mensaje diciendo que necesitaba algun
material para aprender SqlServer, y me pasaron pero estuve
viendo y ese material era para aprender el lenguaje
SQL.Nose, por ejemplo ahi para crear una tabla es:
CREATE TABLE PEDIDOS
(ID_PROPIETARIO INTEGER NOT NULL,
PRODUCTOPEDIDO CHAR(40) NOT NULL);
y aca vi un mensaje de un chico que hace_:
CREATE PROCEDURE SP_Agregar_Auditoria_Comunicaciones
@ID_Accion int,
@Informacion nvarchar(50)
AS
if len(@Informacion)=0
begin
insert into TAuditoria_Comunicaciones (ID_Accion)
values (@ID_Accion)
end
else
begin
insert into TAuditoria_Comunicaciones (ID_Accion,
Informacion) values
(@ID_Accion, @Informacion)
end
GO
Osea que son @ , GO , y otras cosas, de donde las aprendo?
Y eso que escribio, donde se ejecuta?
Leer las respuestas