Creacion de tablas, valores predeterminados e integridad referencial en SQL Server
CREATE TABLE dbo.presupuesto ( id int NOT NULL, idorden int NOT NULL, fecha smalldatetime NOT NULL, idusuario_captura int NOT NULL, fechautoriza smalldatetime NULL, idusuario_autoriza int NOT NULL, importotal money NOT NULL, idstatus_presupuesto int NOT NULL ) ON [PRIMARY] GO ALTER TABLE dbo.presupuesto ADD CONSTRAINT DF_presupuesto_fecha DEFAULT GETDATE() FOR fecha GO ALTER TABLE dbo.presupuesto ADD CONSTRAINT […]