SQL SELECT第一个和第四个数字

时间:2015-02-26 17:54:33

标签: postgresql select

我在表中有ISBN编号9999-02-202-2,我需要检查第一个数字是否匹配第四个,如何在postgresql中使用SELECT进行操作?

1 个答案:

答案 0 :(得分:0)

使用ANSI SQL:

select 
    case when substring('9999-02-202-2' from 1 for 1) = 
              substring('9999-02-202-2' from 4 for 1)
         then 1 else 0 end as matching_flag