I am studying SQL and I have been trying to see what is wrong with this and can't seem to figure it out.
SELECT *
FROM l_suppliers
WHERE suppliers_name = 'frank reed's vegetables';
I am studying SQL and I have been trying to see what is wrong with this and can't seem to figure it out.
SELECT *
FROM l_suppliers
WHERE suppliers_name = 'frank reed's vegetables';
You can try this it might give different results
SELECT
*
FROM l_suppliers
WHERE suppliers_name = 'frank reed''s vegetables';
or
SELECT
*
FROM l_suppliers
WHERE suppliers_name LIKE 'frank reed''s vegetables%';
or
SELECT
*
FROM l_suppliers
WHERE suppliers_name LIKE '%frank reed''s vegetables%';