MySQL 中的 BIT 和 TINYINT 有什么区别?

What is the difference between BIT and TINYINT in MySQL?(MySQL 中的 BIT 和 TINYINT 有什么区别?)

本文介绍了MySQL 中的 BIT 和 TINYINT 有什么区别?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在哪些情况下您会使用哪个?有很大区别吗?我通常被持久化引擎用来存储布尔值?

In which cases would you use which? Is there much of a difference? Which I typically used by persistence engines to store booleans?

推荐答案

TINYINT 是一个 8 位整数值,一个 BIT 字段可以存储 1 位 BIT(1) 和 64 位 BIT(64).对于布尔值,BIT(1) 很常见.

A TINYINT is an 8-bit integer value, a BIT field can store between 1 bit, BIT(1), and 64 bits, BIT(64). For a boolean values, BIT(1) is pretty common.

这篇关于MySQL 中的 BIT 和 TINYINT 有什么区别?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本文标题为:MySQL 中的 BIT 和 TINYINT 有什么区别?

基础教程推荐