About 76,000 results
Open links in new tab
  1. How can I use like in a list for SQL? - Stack Overflow

    Mar 7, 2014 · The list of matches is going to be hardcoded in (and probably added to a little bit over time). I've never heard of PATINDEX.

  2. SQL Server Agent Job Notify multiple operators on failure

    The simplest method i use to notify multiple "OPERATORS" on "JOB FAILURE" is to: In SSMS>SQL Server Agent>Operators create a new OPERATOR or EDIT existing and add additional email …

  3. Define variable to use with IN operator (T-SQL) - Stack Overflow

    I have a Transact-SQL query that uses the IN operator. Something like this: select * from myTable where myColumn in (1,2,3,4) Is there a way to define a variable to hold the entire list "(1,2,3,4)...

  4. Show list of SQL Server Agent operators in a query

    Feb 15, 2018 · How can I see (with a query) the list of operators of SQL Server Agent with their e-mail address? I am asking it because i want to put more than one e-mail address and I used the msdb.dbo.

  5. Combining "LIKE" and "IN" for SQL Server - Stack Overflow

    Is it possible to combine LIKE and IN in a SQL Server-Query? So, that this query

  6. How to retrieve the output of a SQL query executed with ...

    Mar 9, 2025 · How to retrieve the output of a SQL query executed with SQLExecuteQueryOperator in Airflow Asked 9 months ago Modified 8 months ago Viewed 1k times

  7. How can I introduce multiple conditions in LIKE operator?

    Sep 7, 2009 · 60 Oracle 10g has functions that allow the use of POSIX-compliant regular expressions in SQL: REGEXP_LIKE REGEXP_REPLACE REGEXP_INSTR REGEXP_SUBSTR See the Oracle …

  8. What does the colon sign ":" do in a SQL query?

    What does ":" stand for in a query? A bind variable. Bind variables allow a single SQL statement (whether a query or DML) to be re-used many times, which helps security (by disallowing SQL …

  9. Difference between IN and ANY operators in SQL

    Sep 13, 2010 · ANY and ALL OPERATOR IN SQL SERVER 2008R2. Using the > comparison operator as an example, >ALL means greater than every value--in other words, greater than the maximum value.

  10. Should I use != or <> for not equal in T-SQL? - Stack Overflow

    Yes; Microsoft themselves recommend using <> over != specifically for ANSI compliance, e.g. in Microsoft Press training kit for 70-461 exam, "Querying Microsoft SQL Server", they say "As an …