Har ett ClubId som dels innehåller nummeriska tecken och som sedan gammalt innehåller ändelsen -07 Kom på det. Det där ser inte riktigt rätt ut, om du vill ha saker med bara -07 i.Får inte LIKE att fungera
ClubId ClubName
---------- --------------------------------------------------
90575 BK Trol
7222-07 BK Trol
Vad jag vill få fram är bara dom ClubId med -07.
SELECT ClubId, ClubName
FROM bo_Club
WHERE ClubId LIKE '%-07'
Sv: Får inte LIKE att fungera
SELECT ClubId, ClubName
FROM bo_Club
WHERE ClubId LIKE '%' + '-' + '%'
Sv:Får inte LIKE att fungera