Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Couchbase 4010 Error

Tags:

couchbase

n1ql

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;"
  }
]
like image 961
DavidR Avatar asked Jan 29 '18 21:01

DavidR


1 Answers

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;
like image 175
Matthew Groves Avatar answered Nov 19 '22 02:11

Matthew Groves