Guest User

Untitled

a guest
Jan 23rd, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. select * from products where Name like '%LORFAST%'
  2.  
  3. select * from products where Name like '%LORFST%'
  4.  
  5. create table `products` (
  6. `Id` int (11),
  7. `Name` varchar (900)
  8. );
  9. insert into `products` (`Id`, `Name`) values(1,'LORFAST TAB.');
  10. insert into `products` (`Id`, `Name`) values(1,'SPORIDEX REDIMIX DROP');
  11. insert into `products` (`Id`, `Name`) values(1,'MICROGEST 400MG');
  12. insert into `products` (`Id`, `Name`) values(1,'ANTIPLAR PLUS TAB');
  13. insert into `products` (`Id`, `Name`) values(1,'DECA DURABOLIN 100MG');
Add Comment
Please, Sign In to add comment