[SQL]Boolean Field in Oracle
程序员文章站
2022-07-04 16:56:53
...
参考:https://*.com/questions/30062/boolean-field-in-oracle
-
Use an integer and just don't bother assigning anything other than 0 or 1 to it.
-
Use a char field with 'Y' or 'N' as the only two values.
-
Use an enum with the CHECK constraint.
上一篇: html简介
下一篇: Java 继承原理与用法实例分析
推荐阅读
-
Linux下通过python访问MySQL、Oracle、SQL Server数据库的方法
-
PL/SQL Dev连接Oracle弹出空白提示框的解决方法分享
-
SQL Server、Oracle和MySQL判断NULL的方法
-
oracle sql 去重复记录不用distinct如何实现
-
ORACLE LATERAL-SQL-INJECTION 个人见解
-
oracle下巧用bulk collect实现cursor批量fetch的sql语句
-
在Oracle PL/SQL中游标声明中表名动态变化的方法
-
PL/SQL Oracle客户端出现中文乱码问题解决办法
-
oracle层次查询,oracle 9i利用SQL演示脚本判断是叶子或根节点
-
oracle系统表中v$session、v$sql字段讲解