Guest User

Untitled

a guest
Dec 14th, 2017
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. -- Se tiene definida la siguiente tabla
  2. CREATE TABLE MY_TABLA
  3. (
  4. ID NUMBER (3),
  5. NUM_TAB FLOAT (3)
  6. );
  7.  
  8. INSERT INTO MY_TABLA
  9. VALUES (24, 24);
  10.  
  11. SELECT ID, NUM_TAB FROM MY_TABLA;
  12. -- 24 20
  13. ```
Add Comment
Please, Sign In to add comment