I have three table in mysql
user(1K)
Campaign(6K)
CamapaignDailyUSes(70K)
If I get data of all user by
Select User.column1,User.column2,Campaign.column1 ,Campaign.column2 ,
DailyUSes.* from User Join Campaign join CamapaignDailyUSes
it will give result in few secounds may be.
But in Couchbase N1ql it will take more then 1 minute
what should Do fot it ?? even create some proper index.
How can i structure my Couchbase data ??