How to compare two columns in one table?

I would like to compare two columns in one table. I want to be able to return all rows where two columns have the same value.

I'm looking for something like SELECT * FROM FOO WHERE C1 = C4.

Therefore, in the example below, I would only return the first row:

C1    || C2  || C3  || C4
--------------------------
1     || a   || b   || 1
2     || a   || b   || 4
3     || b   || d   || 2
4     || b   || d   || 2

If that matters, I use SQLite(more specifically WebSQL).

+5
source share
1 answer

SELECT * FROM FOO WHERE C1 = C4must work. Is not it?

If not, are they the same data type and length? You may need to convert.

WebSql, db, , varchar (5), - varchar (10), . -

 Convert(varchar, 10, FieldName)

.

+9

All Articles