Manipulación de datos BIBLIOTECA
IF NOT EXISTS (SELECT * FROM sys.databases WHERE name = 'Bdbiblioteca') BEGIN CREATE DATABASE Bdbiblioteca END Drop table Usuario IF NOT EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[dbo].[Usuario]') AND type in (N'U')) BEGIN create table Usuario( Cedula int primary key not null, Nombre_U varchar(40) not null, Apellidos varchar(40) not null, Telefono bigint not null, Direccion text, ) END GO truncate table Usuario go Insert into Usuario values ('43467895','Rangel','Ramirez Restrepo','314507891','Calle 14#2050') Insert into Usuario values ('1023890578','Sebastian','Garcia Ospina','3135678902','Calle 12#5678') Insert into Usuario values ('41567987','Tony','Montana Cardona','3156782341','Calle 51478') Insert into Usuario values ('42492518','Jorge Andres','Vargas Lopez','3189023456','Calle 9...