The Queries in this page solved at the library database. It is a sample database generated by randomly records. You can download it from the link. You will see more than 500 examples in the future. You can filter from the search panel above by selecting sql statements. I hope you will like it
Solution 1)
Select * from students
where name like 'a%'
ETİKETLER
Select - Where - Like -Solution 1)
Select * from students
where name like '%a'
ETİKETLER
Select - Where - Like -Solution 1)
Select * from students
where name like '%a%'
ETİKETLER
Select - Where - Like -Solution 1)
Select * from books
where bookId like '%1%'
ETİKETLER
Select - Where - Like -Solution 1)
Select * from students
where name like '_a%'
ETİKETLER
Select - Where - Like -Solution 1)
Select * from students
where name like '%a_'
ETİKETLER
Select - Where - Like -Solution 1)
select * from students
where name= 'James' and surname not like '%a%'
ETİKETLER
Select - Where - Like - Multi Condition -