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.
整数の最初の 5 ビットを取得するにはどうすればよいですか?
どうもありがとうございます。
MySQL の上位 5 行:
SELECT * FROM table_name LIMIT 5
32 ビット整数の上位 5 ビット:
(a >> 27)
MySQL の 32 ビット整数フィールドの上位 5 ビット:
SELECT (field >> 27) FROM table_name
整数型 (正確な値) - INTEGER、INT、SMALLINT、TINYINT、MEDIUMINT、BIGINT
ビット機能