Note that there are some explanatory texts on larger screens.

plurals
  1. USDavid
    primarykey
    data
    text
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. COThat is correct, unless you use special operators to change the behaviour of MATCH AGAINST. MATCH AGAINST can also do some weird things that may not be what you expect. For example, it ignores any defined stop words and words that occur frequently in your DB. It also ignores words which don't meet the ft_min_word_len system variable, whatever that is set to. Because of these reasons, I strongly recommend taking Marco's suggestion and use INSTR or LIKE instead (though I would use LIKE '%tato%' just in case you want tato occurring anywhere in the string, and not just at the end).
      singulars
    2. COCan you elaborate on this statement, then:<BR>so what I want to do is by using one sql statement giving the web department id it will pull all of the parent groups until the parent is 0. <BR>I suppose I don't understand, it sounds like you're retrieving them from the current entry, until the parent is 0... so from the current ID to 0. Can you rephrase that?
      singulars
    3. COIf you want to keep the URL clean, you could look into storing the user ID in a cookie, so that when the user hits the URL you can read the cookie to determine their userid. However, be sure to encrypt the cookie such that the user cannot modify the userid if you do this. Also make sure a user can't get to another user's messages by just changing the URL. You could also POST the user ID, but you still have to make sure it can't be spoofed.
      singulars
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload