Advertisement
Gabri_RDiaz

Create files

Apr 1st, 2019
163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MySQL 0.33 KB | None | 0 0
  1. INSERT INTO dbo.Clientes
  2.    ([IDCliente],[Nombre],[Domicilio],[Correo])
  3. VALUES
  4.    ( 1, N'Galipizza', N'Covas', N'Galipizza@pizzbur.com'),
  5.    ( 2, N'VegaGestión', N'Variante', N'vgestion@vegagestion.com'),
  6.    ( 3, N'MesónLodeiro', N'Lodeiro', N'mesonlodeiro@mlodeiro.com'),
  7.    ( 4, N'Copas', N'Viveiro', N'Copas@pubcopas.com')
  8. GO
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement