Forum Replies Created

Viewing 4 posts - 31 through 34 (of 34 total)

  • RE: Searching for

    Hi,

     

    You just have to double up the ' as in

    select * from test where data = 'O''Connor'

    If you are creating the statement dynamically from say a web page you...

  • RE: Need your assistance to in design Database:

    Hi,

    I generally stick to the 'fully normalised' solution if there is any doubt as it provides the most flexibility regarding how the data will be used.  if you create a...

  • RE: Indexes , please explain urgently - your input will be appreciated

    Don't drop the index!

    If SQl server is ising it then it must be of use.

    The most likly reason is that the query only requires these three columns form the table....

  • RE: LIKE on table field values

    Yes you can do this but It isn't very efficient so you should take care where you use it.

    Example:

    Select a.col1, b.col1, etc...

    from TableA a

    join TableB b

    on a.col1 like '%' + b.col1...

Viewing 4 posts - 31 through 34 (of 34 total)