在Postgres我试图返回值,但它显示错误

时间:2014-11-20 07:56:41

标签: postgresql-9.1

在postgres中我试图返回此但它显示错误

select substr('10111',3,1) as aa_code
return aa_code;


ERROR:  syntax error at or near "return"
LINE 2:  return aa_code;
         ^
********** Error **********

1 个答案:

答案 0 :(得分:0)

为什么要使用退货?

=# select substr('10111',3,1) as aa_code;
 aa_code
---------
 1
(1 row)