User Tag List

Results 1 to 3 of 3

Thread: sqldb

  1. #1
    Clicker Multimedia Fusion 2 DeveloperAndroid Export Module

    Join Date
    Jun 2006
    Location
    israel
    Posts
    207
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    sqldb

    hi
    i have a file with records, the records look like this
    like,want,love,feel - this is one records , how can i found all the records that have the word feel in them ?
    i want to work with sql commands.
    thank's ezra

  2. #2
    Forum Moderator Fusion 2.5 DeveloperHTML5 Export ModuleiOS Export ModuleSWF Export Module
    DavidN's Avatar
    Join Date
    Jun 2006
    Location
    Boston, MA, USA
    Posts
    4,044
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: sqldb

    For your SQL query, you would use:

    SELECT * FROM mytable WHERE myfield LIKE "%feel%"

    (Or something like that, anyway. I can never remember SQL syntax.)

    The "LIKE" allows the use of wildcard characters in the search term, and the % characters represent any number of letter on either side of the "feel".

    Now, after typing all that out, I've just realized that you meant only the ones that exactly match "feel". This is even simpler:

    SELECT * FROM mytable WHERE myfield='feel'

  3. #3
    Clicker Multimedia Fusion 2 DeveloperAndroid Export Module

    Join Date
    Jun 2006
    Location
    israel
    Posts
    207
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: sqldb

    thanks
    i try it

Similar Threads

  1. SQLDB's 'quote()' function
    By Dines in forum Extension Development
    Replies: 1
    Last Post: 26th January 2008, 09:48 PM
  2. SQLDB memory usage (bug?)
    By Kunci in forum Extension Development
    Replies: 0
    Last Post: 10th October 2007, 12:42 PM
  3. SQLDB issue (bug?)
    By Blizna in forum Extension Development
    Replies: 4
    Last Post: 28th January 2007, 04:00 PM
  4. SQLDB
    By Jeff in forum Released Extensions
    Replies: 1
    Last Post: 17th October 2006, 11:36 PM
  5. SQLDB has been ported to MMF2
    By JSJ in forum Extension Development
    Replies: 29
    Last Post: 4th August 2006, 01:31 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •