icelava.net

INSERT neural.pulsation INTO public_brain FROM flesh_processor WHERE neural.retention < 0.1
Welcome to icelava.net Sign in | Help
in Search

Any good books or websites for SQL syntax?

Last post 04-08-2004, 13:51 by icelava. 1 replies.
Sort Posts: Previous Next
  •  04-06-2004, 13:24 371

    Any good books or websites for SQL syntax?

    I have to create a search textbox where if i key in the word "dog",it will search against a field called "Name" in a table.Then it will return all records where the text/data in the "Name" field contains the word "dog".For example,it will return the records where the text/data in the "Name" field has words such as "hotdog","doggie","dog barking","big dog" etc etc.

  •  04-08-2004, 13:51 374 in reply to 371

    Re: Any good books or websites for SQL syntax?

    <code>SELECT *
    FROM yourTable
    WHERE Name LIKE '%dog%'</code><a href="http://www.w3schools.com/sql/default.asp">w3 schools SQL section</a>
View as RSS news feed in XML
Powered by Community Server, by Telligent Systems