Why does the following select statement succeed, instead of giving a "no column error"? Is this a feature or a bug?
sqlite> select nonsensename and 0; 0 sqlite> .version SQLite 3.8.1 2013-10-17 12:57:35 c78be6d786c19073b3a6730dfe3fb1be54f5657a The select statement is not a subquery and has no from clause, so nonsensename is a column that should not exist and so should give an error in my opinion. Ambrus _______________________________________________ sqlite-users mailing list [email protected] http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

