本文介绍了从SQL Server检索值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
选择 * 来自 AdvertisementInformation where SubCategory = ' 家庭教师' AND (AdType = ' 想要的 or AdType = ' 提供')
但是它只提供一个记录,一个要记录,我想从sql数据库的两个值中检索所有记录
数据库
解决方案
select * from AdvertisementInformation where SubCategory ='Home Tutor' AND ( AdType ='Wanted' or AdType ='Offer')
but it give only one record for offer and one record for wanted and i want to retrieve all records from both values from sql database
and what is the query for how to find the number of tables exists in database
解决方案
这篇关于从SQL Server检索值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!