PL/PgSQL confusing error?

Haven't read your function but the error message usually means that a variable has the same name as a column. Prefixing variable names with a usually is a good means to avoid the message, and it makes plpgsql functions a bit more readable Also, there's at least one occurrence of in your code that looks like it should be a : plpgsql is forgiving for this stuff, but you shouldn't count on it.

Haven't read your function but the error message usually means that a variable has the same name as a column. Prefixing variable names with a _ usually is a good means to avoid the message, and it makes plpgsql functions a bit more readable. Also, there's at least one occurrence of = in your code that looks like it should be a :=.

Plpgsql is forgiving for this stuff, but you shouldn't count on it.

2 Line 34 has the reserved word count. That would be my first guess. – Mel May 12 at 14:39.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions