Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
データ型列に 200 を格納しようとすると、tinyInt自動的に 127 に変換されました。データベースに格納することはできませんか?
tinyInt
TINYINT値を保持するために1バイトを使用します。これにより、符号付きフィールドが-128〜127、符号なしフィールドが0〜255になります。そうです、フィールドを符号なしにすると、最大255を保存できます。
TINYINT