About 722,000 results
Open links in new tab
  1. SQL SELECT WHERE field contains words - Stack Overflow

    Jan 12, 2013 · SELECT * FROM MyTable WHERE Column1 CONTAINS 'word1 And word2 And word3' For details, see CONTAINS (Transact-SQL). For selecting phrases, use double quotes …

  2. t sql - SQL Server select columns which contain data - Database ...

    SQL Server select columns which contain data Ask Question Asked 11 years, 8 months ago Modified 2 years, 8 months ago

  3. Easy way to search for a string any where within XML column?

    Jan 27, 2012 · If your objective is to check whether the XML column contains text without caring where in the XML the text is, why not convert the XML column to a varchar and use LIKE?

  4. LIKE vs CONTAINS on SQL Server - Stack Overflow

    Sep 22, 2011 · 19 Having run both queries on a SQL Server 2012 instance, I can confirm the first query was fastest in my case. The query with the LIKE keyword showed a clustered index …

  5. sql server - Change drive letter (which contains system dbs)

    Once you change the drive letter, your SQL instance will not be able to start. You have to give the new location to your system DBs and then start the SQL instance.

  6. View - failed because it contains a derived or constant field.

    Sep 16, 2018 · View - failed because it contains a derived or constant field. Forum – Learn more on SQLServerCentral

  7. sql - MySQL query String contains - Stack Overflow

    This will only work if your using a prepared query. If you're using an actual string in there (ex. liquibase sql upgrade script) then consider INSTR mentioned below). This is because if your …

  8. SQL Server 2012 - Full Text Search [Break word - Underscore]

    SELECT * FROM [TABLE] WHERE CONTAINS(Title, 'PS3') When the Title is proceeded by an underscore it will not return it. Oblivion-PS3 -> Good Oblivion PS3 -> Good Oblivion_PS3 -> …

  9. Volume Does Not Belong to The Cluster Group - SQLServerCentral

    Oct 15, 2018 · the volume that contains the sql server data directory <volume> does not belong to the cluster group I'd try the last thing hinted at in the post - put the disks in maintenance mode …

  10. Postgres: check if array field contains value? - Stack Overflow

    If you want to search whether the array contains all of the values in another array, you can use the @> operator, aka the "contains" operator "Does the first array contain the second".