mysql - how to select data when i use from fulltext and inner join? -


i have 2 tables , want select data 2 tables inner join work true. problem in out of query

select    tbl_usersmeta.name,   tbl_usersmeta.family,   tbl_users.*    tbl_usersmeta    inner join     tbl_users        on tbl_usersmeta.id        , tbl_users.id in (         select id          tbl_users          match(username) against('a*' in boolean mode)) 

problem : enter image description here


Comments

Popular posts from this blog

hibernate - How to load global settings frequently used in application in Java -

python 3.x - Mapping specific letters onto a list of words -

objective c - Ownership modifiers with manual reference counting -