Advertisement
Guest User

Untitled

a guest
Jun 25th, 2019
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. create table numerictype2 (
  2. c1 decimal(3,2),
  3. c2 float(3,2),
  4. c3 double(5,2)
  5. );
  6.  
  7. insert into numerictype2 values #insert values
  8. (2.323,2.323,2.323),
  9. (1.5,1.4,111.65);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement