Guten Abend eine kurze frage wofür steht die 11 in dne Text der unten ist?
int(11)
Guten Abend eine kurze frage wofür steht die 11 in dne Text der unten ist?
int(11)
In ein MYSQL Feld / eine Spalte mit dem Typen "int(11)" kann eine 11 Stellige Zahl abgespeichert werden.
(Wie unten im Thread auch genannt) sieht die Zahl 25 bspw. dann so aus
00000000025
Abgesehen davon hilft google da weiter ;D
https://www.google.de/search?q…ei=F8LOU9zuIIuh8wfHp4HwDw
http://www.flashforum.de/forum…5-unterschied-128491.html
/e
Zeichensetzung
Alles anzeigenIn ein MYSQL Feld / eine Spalte mit dem Typen "int(11)" kann eine 11 Stellige Zahl abgespeichert werden.
(Wie unten im Thread auch genannt) sieht die Zahl 25 bspw. dann so aus
00000000025
Abgesehen davon hilft google da weiter ;D
https://www.google.de/search?q…ei=F8LOU9zuIIuh8wfHp4HwDw
http://www.flashforum.de/forum…5-unterschied-128491.html
/e
Zeichensetzung
Das ist falsch. Die Nullen werden nur angezeigt, wenn ZEROFILL aktiviert ist. Die 11 sagt lediglich aus, wie die Zahl dargestellt wird (auch "display width" genannt). Das hat NICHTS mit der Speicherung des Integers zu tun. Der maximalste und negativste Integer bleibt gleich, egal ob int(11) oder int(...).
MySQL != C#. Für unterschiedliche Größen verwende TINYINT, SMALLINT, MEDIUMINT, INT und BIGINT.
Manual lesen hilft auch: http://dev.mysql.com/doc/refma…eric-type-attributes.html
ZitatFor example, INT(4) specifies an INT with a display width of four digits. This optional display width may be used by applications to display integer values having a width less than the width specified for the column by left-padding them with spaces.
[...]
The display width does not constrain the range of values that can be stored in the column. Nor does it prevent values wider than the column display width from being displayed correctly. For example, a column specified as SMALLINT(3) has the usual SMALLINT range of -32768 to 32767, and values outside the range permitted by three digits are displayed in full using more than three digits. When used in conjunction with the optional (nonstandard) attribute ZEROFILL, the default padding of spaces is replaced with zeros. For example, for a column declared as INT(4) ZEROFILL, a value of 5 is retrieved as 0005.
Man lernt nie aus was
Gemeint waren (also mit C#) die Datengrößen. Int16 -> bis zu 2,1 mrd oder so und int 32 bla bla bla weißte schon.
Hab die manual jetzt nicht gelesen xD Danke dir
Vielen dank das Ihr es mir erklärt habt.