本文介绍了如何检索名字以字母R开头的所有员工?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个名为tbl_emp的表,其中包含(名字,姓氏,生日,文明,宗教)。如何在不使用LIKE'R%'和子字符串的情况下获得名字以字母R开头的所有员工。还有另一种方式吗?



我尝试过:



SELECT firstname

FROM tbl_emp

WHERE firstname LIKE'5%'



,另一个使用子串。

Ihave a table named tbl_emp which contains (firstname,lastname,birthdate,civilstatus,religion). How can I get all the employees whose first name starts with letter R without using LIKE 'R%' and substring. Is there another way?

What I have tried:

SELECT firstname
FROM tbl_emp
WHERE firstname LIKE '5%'

and the other one uses substring.

推荐答案


这篇关于如何检索名字以字母R开头的所有员工?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-28 06:30