Citat:
semsudin: ja predpostavljam da ti je tip (type) polja "int", a ako nije podesi ga na int i iza njega pod Length/Values unesi do koliko znakova zelis da ti bude int dugacak (npr. 15) zatim klikni na save i to ti je to
@semsudin: Nece to bas tako ici.

Ne moze on staviti da mu int bude dugacak 15 znakova, bas zbog onog ogranicenja, koje sam napisao u poruci iznad.
A evo ti i praktican dokaz:
mysql> create table testing(id int(15));
Query OK, 0 rows affected (0.09 sec)
mysql> insert into testing values(111111111111111);
Query OK, 1 row affected, 1 warning (0.01 sec)
mysql> insert into testing values(1111111111111111);
Query OK, 1 row affected, 1 warning (0.00 sec)
mysql> insert into testing values(1111111111111111111);
Query OK, 1 row affected, 1 warning (0.00 sec)
mysql> select * from testing;
+------------+
| id |
+------------+
| 2147483647 |
| 2147483647 |
| 2147483647 |
+------------+
3 rows in set (0.01 sec)
...
mysql> insert into testing values(111111111);
Query OK, 1 row affected (0.00 sec)
mysql> select * from testing;
+------------+
| id |
+------------+
| 2147483647 |
| 2147483647 |
| 2147483647 |
| 2147483647 |
| 2147483647 |
| 111111111 |
+------------+
6 rows in set (0.01 sec)
Dakle, dzaba ti je i da stavis duzinu na 15, kad ne mozes unijeti vece vrijednosti od 2147483647 ...
Blog - baze podataka
---------------------
Oracle OCP DBA (9i & 10g)
Oracle Database: SQL Certified Expert
Oracle OCP Developer
Certified MySQL DBA