I am using a Sql query to load a subset of data
SELECT [sfb_id]
,[prs_id_201304]
,[prs_id_201204]
,[vorname]
,[sex]
FROM [IAB\KruegerJ049].[test]
WHERE sex='Weiblich'
the column sex
contains the characters Männlich
or Weiblich
(male or female). I only want to read out rows which contain sex='Weiblich'
. But this code does not return any entries!
Thanks in advance