我有带有列的数据库
ID 名字姓氏。我想得到各种人的身份证。因此,我正在编写如下查询。
Select ID from Database where FirstName='X' and LastName='x1'
Select ID from Database where FirstName='Y' and LastName='y1'
Select ID from Database where FirstName='Z' and LastName='z1'
我有什么办法可以优化这个查询。