从两个表的SQL选择语句

从两个表的SQL选择语句

本文介绍了从两个表的SQL选择语句的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在sql server中有两个表.country表和detail表.
明细表的国家/地区ID大于10,表示明细表有10条记录
但我只想从详细信息表中选择一条记录,如何完成,请帮助我,这将是极大的帮助
谢谢

i have two table in sql server .country table and detail table.
detail table a country id more than 10.it means that detail table have 10 record
but i want to select only one record from detail table how it is done plz help me that will be greate help
thanks

推荐答案

SELECT * FROM myTable WHERE country='India'




这篇关于从两个表的SQL选择语句的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-13 22:23