I made table copied from W3schools 2015 ... Here's some of the data:
here the columns and data types i used as follows.
CustomerID = int
CustomerName = varchar
ContactName = varchar
Address = varchar
City = varchar
PostalCode = varchar
Country = text
When i used the following query i got the actual result.
SELECT * FROM Customers WHERE Country LIKE 'U%'; SELECT * FROM Customers WHERE Country LIKE 'M%'; SELECT * FROM Customers WHERE Country LIKE 'G%';
Now the problem was that When i used the following query, i weren't getting actual result.
SELECT * FROM Customers WHERE Country LIKE 's%';
i didn't see any row !! But We should have seen the following output,
why ?? can anybody explain pls...
Moreover I am totally in Novice phase..
Thanks in Advance