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