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.
次のようにテーブルを作成しています。
create table SomeTable ( LoginTime int, someValue 64bit-int )
2 番目の列を 64 ビット整数として定義するにはどうすればよいですか?
MySQL では、BIGINTデータ型は 8 バイト (64 ビット) の整数を表します。列内の負の数を許可 (または防止) するSIGNEDことができます。UNSIGNED
BIGINT
SIGNED
UNSIGNED
ここで、MySQL 整数データ型のすべてのバリアントについて詳しく読むことができます。列の属性については、ここで説明します。
Sql Serverを使用していると思います。使用したい
bigint - signed 64-bit.