问题
I've been testing Couchbase 5 and created a bucket called fp-conversion-data
which has some JSON data in it. I have been trying to run some simple queries such as:
SELECT * FROM fp-conversion-data limit 5;
Instead of getting the expected results, I keep getting this error:
[
{
"code": 4010,
"msg": "FROM expression term must have a name or alias",
"query_from_user": "SELECT * FROM fp-conversion-data limit 5;"
}
]
回答1:
I think the problem is that you have dashes in the name of the bucket. Use backticks (`) around the bucket name.
Try this:
SELECT *
FROM `fp-conversion-data`
LIMIT 5;
来源:https://stackoverflow.com/questions/48510648/couchbase-4010-error