Good afternoon.
I have a request:
SELECT * FROM Firm WHERE name LIKE '%'
Please tell me how to use morphological search with this query in MsSQL 2008?
Declare @find NVarchar(20)='test' SELECT * FROM Firm WHERE name LIKE '%' +@find +'%' OR phone LIKE '%' +@find +'%'
Just run below Query
Query
SELECT * FROM Firm WHERE name LIKE N'%' -- ^ Magical Code
SQL Fiddle
Source: https://habr.com/ru/post/1484618/More articles:How to read a text document with bold and italic formatting using POI - docActionbar title not showing - androidstore.connect (host, username, password) does not connect to my gmail - javaHow to use non-standard ports? - moovwebjava swingworker thread to update core gui - javaCan JDBC connection files contain computed properties? - jdbcWhite corner showing on a black box with border radius - cssFreeBSD: BUS_TEARDOWN_INTR definition not found - cHow to send an array of bytes to a server using AJAX - javascriptVisual Studio LESS: compile main file while saving imported file - visual-studioAll Articles