phpbar.de logo

Mailinglisten-Archive

Re: Insert/Update mit Float
Archiv Mailingliste mysql-de

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Insert/Update mit Float



Hoi Matthias

Mein Test:

mysql> create table temp (
    ->  id smallint not null auto_increment primary key,
    ->  winkel float(6,2)
    -> );
Query OK, 0 rows affected (0.04 sec)

mysql> insert into temp values('','6.2');
Query OK, 1 row affected (0.00 sec)

mysql> select * from temp;
+----+--------+
| id | winkel |
+----+--------+
|  1 |   6.20 |
+----+--------+
1 row in set (0.00 sec)

mysql> update temp set winkel='1727.203' where id = 1;
Query OK, 1 row affected (0.00 sec)
Rows matched: 1  Changed: 1  Warnings: 0

mysql> select * from temp;
+----+---------+
| id | winkel  |
+----+---------+
|  1 | 1727.20 |
+----+---------+
1 row in set (0.00 sec)

mysql> insert into temp set winkel = 12.34; 
Query OK, 1 row affected (0.00 sec)

mysql> select * from temp;
+----+---------+
| id | winkel  |
+----+---------+
|  1 | 1727.20 |
|  2 |   12.34 |
+----+---------+
2 rows in set (0.00 sec)

soweit eigentlich alles in ordnung

tut mir leid, dass ich dir nichts besseres bieten kann :-(
aber vielleicht kannst du anhand der inserts und des updates fehler bei
deinem source finden...

grüessli, Johannes

Matthias Scheja wrote:
> 
> Hallo Johannes,
> 
> > und da bekommst du jetzt als select raus? immer noch 0.00?
> Ja
> 
> > select sitz_id, winkel2 from Sitze;     würde weiterhelfen
> mysql> select sitz_id,winkel2 from Sitze limit 10;
> +---------+---------+
> | sitz_id | winkel2 |
> +---------+---------+
> |       1 |    0.00 |
> |       2 |    0.00 |
> |       3 |    0.00 |
> |       4 |    0.00 |
> |       5 |    0.00 |
> |       6 |    0.00 |
> |       7 |    0.00 |
> |       8 |    0.00 |
> |       9 |    0.00 |
> |      10 |    0.00 |
> +---------+---------+
> 10 rows in set (0.00 sec)
> 
> --
> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
>           Matthias Scheja, Kamenzer Str. 44, 01099 Dresden
>                       phone: 0351-8022790
> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> 
> ---
> *** Abmelden von dieser Mailingliste funktioniert per E-Mail
> *** an mysql-de-request_(at)_lists.4t2.com mit Betreff/Subject: unsubscribe

---
*** Abmelden von dieser Mailingliste funktioniert per E-Mail
*** an mysql-de-request_(at)_lists.4t2.com mit Betreff/Subject: unsubscribe


Home | Main Index | Thread Index

php::bar PHP Wiki   -   Listenarchive