Created
December 8, 2012 17:07
-
-
Save rvazquezglez/4241051 to your computer and use it in GitHub Desktop.
insersiones...
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
insert into tipocuenta values (1,'debito'); | |
insert into tipocuenta values (2,'credito'); | |
insert into banco values(1,'santander'); | |
insert into cliente values(1,'Nombre','Apaterno','Amaterno',23,1); | |
insert into cuenta values (1, 111, 1, 1); | |
insert into tipomovimiento (1,'deposito'); | |
insert into movimiento values(1,current_timestamp , 100, 1,1); | |
insert into movimiento values(2,current_timestamp , 200, 1,1); | |
insert into movimiento values(3,current_timestamp , 300, 1,1); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment