Can anyone see anything obviously wrong with this statement? I'm not really
an SQL kind of guy
SELECT ProductID, Title FROM Products WHERE PlatformID LIKE % AND CategoryID
= 'f5e45b55-95de-47f4-a79b-b24969178b52' ORDER BY Title
PlatformID contains a GUID and I thought passing a wildcard would allow all
all records to be selected with the matching CategoryID
Any ideas? I'm assuming I've just formed the SQL incorrectly
an SQL kind of guy
SELECT ProductID, Title FROM Products WHERE PlatformID LIKE % AND CategoryID
= 'f5e45b55-95de-47f4-a79b-b24969178b52' ORDER BY Title
PlatformID contains a GUID and I thought passing a wildcard would allow all
all records to be selected with the matching CategoryID
Any ideas? I'm assuming I've just formed the SQL incorrectly
Comment