我想在DB2中创建一个检查约束,它将检查一个单元格的每个字符,然后只允许特定的值。我尝试了很多不同的方式
add check (substr(term, 1, 1) LIKE '[WS]'
and substr(term, 2, 1) = 'S'
and substr(term, 3, 2) LIKE '[0-9]')
and substr(term, 5, 2) LIKE '[ 0-9]')
如何设置char必须的范围?
答案 0 :(得分:0)
您使用的是正则表达式语法,但您必须指定SQL。 所以看起来应该是
add check ((substr(text, 1,1)='W' or substr(text, 1,1)='S')
and substr(text, 2,1)='S'
and substr(text, 3,1) between 0 and 9 )
现在使用DB2 LUW 11.1,您还可以使用正则表达式 - 类似于:
add check (regexp_like(text, '[WS]+'))
这只是一个例子,您必须根据需要调整正则表达式。