- MySQL 8 for Big Data
- Shabbir Challawala Jaydip Lakhatariya Chintan Mehta Kandarp Patel
- 145字
- 2021-08-20 10:06:05
Extended bit-wise operations
In MySQL 5.7, bit-wise operations and functions were working for BigInt (64-bit integer) data types only. We needed to pass BIGINT as an argument and it would return the result as BIGINT. In short, it had maximum range up to 64 bits to perform operations. A user needs to do conversion to the BIGINT data type in case they want to perform it on other data types. This typecasting was not feasible for data types larger than 64 bits as it would truncate the actual value, which resulted in inaccuracy of data.
MySQL 8 has improved bit-wise operations by enabling support for other binary data types such as Binary, VarBinary, and BLOB. This makes it possible to perform bit-wise operations on larger than 64-bit data. No more typecasting needed! This allows the taking of arguments and returning results larger than 64 bits.
- 黑客攻防從入門到精通(實戰(zhàn)秘笈版)
- Learning Docker
- C# Programming Cookbook
- Instant Zepto.js
- Visual FoxPro 程序設(shè)計
- OpenCV 3和Qt5計算機視覺應用開發(fā)
- Learning AWS Lumberyard Game Development
- 人人都懂設(shè)計模式:從生活中領(lǐng)悟設(shè)計模式(Python實現(xiàn))
- JavaScript入門經(jīng)典
- Mathematica Data Analysis
- SQL Server數(shù)據(jù)庫管理與開發(fā)兵書
- Clojure for Machine Learning
- Orleans:構(gòu)建高性能分布式Actor服務
- 從零開始學Unity游戲開發(fā):場景+角色+腳本+交互+體驗+效果+發(fā)布
- Go Systems Programming