When building Joins statements, is it possible to add this both operators :
Code: Select all
Like
Not LikeCode: Select all
SELECT
tableA.*,
tableB.*
FROM
tableA,
tableB
WHERE
tableA.Id like tableB.IdWhen adding new selection / criteria / group / join .... we are no more able to remove them (only solution is to go into the SQL statement and remove what we want to).