Sunday, September 13, 2015

SQL -- More Data Selection

Selecting data from employee table using the LIKE condition. Only first names that end in 'n' are selected.



select * from
myemployees_RDP0680
where firstname LIKE '%n'



No comments:

Post a Comment