博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
To Search Data in Multiple Columns using 'IN' Clause
阅读量:5274 次
发布时间:2019-06-14

本文共 987 字,大约阅读时间需要 3 分钟。

 

Using the Code

  1. Create a table with some dummy records to  show the demonstration:
    create table tbl_test(id int identity(1,1),column1 nvarchar(50),coulmn2 nvarchar(50),coulmn3 nvarchar(50))-- Create a table insert into tbl_Test (column1,coulmn2,coulmn3) values('Griff','Serjey','Maciej'),('King','Fisher','Ajay'),('Paul','Griff','Serjey'),('King','Fisher','Griff')--Inserting some Dummy Records
  2. Now, I'm going to search the value where the data is 'Griff'. In the above table, there are 3 rows that contain 'Griff'.
    select *from tbl_test where 'Griff' IN (column1,coulmn2,coulmn3)
  3. By executing the above query, we will get the resultset like below:
    id   column1    coulmn2    coulmn31    Griff      Serjey    Maciej3    Paul       Griff     Serjey4    King       Richard   Griff

The query will check all the mentioned columns where the input data is available by using the simple 'IN' clause.

转载于:https://www.cnblogs.com/wupd2014/p/4975507.html

你可能感兴趣的文章
希尔排序法(缩小增量法)
查看>>
PHP编程基础学习(一)——数据类型
查看>>
MongoDB-JAVA-Driver 3.2版本常用代码全整理(2) - 查询
查看>>
NPOI处理Word文本中上下角标
查看>>
Android笔记 Handler
查看>>
如何阅读大型前端开源项目的源码(转)
查看>>
java.util.Arrays类详解
查看>>
idea搭建tocmat
查看>>
NYOJ-626-intersection set(二分查找)
查看>>
项目管理之路(1):初步踏入项目管理
查看>>
Java 中 静态方法与非静态方法的区别
查看>>
echarts饼图显示百分比
查看>>
JMS消息
查看>>
Jenkins+ProGet+Windows Batch搭建全自动的内部包(NuGet)打包和推送及管理平台
查看>>
php上传文件及头像预览
查看>>
大四java实习生的一些经历
查看>>
线程池的概念
查看>>
Oracle_Statspack性能诊断工具
查看>>
转获取sql维护的表关系
查看>>
Java 序列化
查看>>