本文介绍了SQL查询表中是否存在数据。的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 29岁程序员,3月因学历无情被辞! Hii all, 首先是一个场景。 我的数据库中有1000+用户。我想根据表格中的数据的存在来过滤用户(在这种情况下是帐户),即我想省略表格中没有条目的用户(表中没有用户记录)。 例如: 用户表: 用户ID ------ ---用户名 User001 -------- ABC User002 -------- XYZ User003 -------- PQR .................... ................... 账户表: 账户名称---- --- CreateUser ------- ModifyUser Account1 ----------- User001 --------------- User002 Account2 ----------- User002 --------------- User001 如果达到以上我需要以下UserID:User001和User002 和 不 User003。 我如何在账户表上查询... !! 将使用哪个概念..... Plzz帮我解决这个问题......! 解决方案 Hii all,Here is a Scenario first.I have 1000+ User in my database. I want to filter the Users depending upon the existence of data in tables(Account in this case) i.e I would like to omit the Users who does not have entry in the table (NO RECORDS OF USER IN TABLE).for example:User Table:UserID---------UsernameUser001--------ABCUser002--------XYZUser003--------PQR......................................Account Table:AccountName-------CreateUser-------ModifyUserAccount1-----------User001---------------User002Account2-----------User002---------------User001Acc to above I would require following UserID : User001 and User002and NOT User003.How I can query this on Account Table...!!Which concept will be Used.....Plzz help me on this...! 解决方案 这篇关于SQL查询表中是否存在数据。的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云!
08-15 17:35