About 50 results
Open links in new tab
  1. How can I filter words in SQL using a function? - Stack Overflow

    How can I filter words in SQL using a function? I'm having a hard time if I explain it, so I'm giving an example: ID WebsiteName 1 www.yahoo.com 2 www.google.com 3 www.youtube.com What I want …

  2. Define a function and use it in a SQL-Query - Stack Overflow

    Sep 6, 2017 · 5 Yes, SQL functions are easy to create. But you have to understand the 3 different types of functions in SQL: 1) Scalar functions: -- return a single value. 2) Table based functions: -- returns …

  3. How do I use a SQL function inside my SQL query - Stack Overflow

    I have a SQL function called MAGIC that returns the magical value of a number. Suppose further that I want to write a SQL query that will return a list of numbers from a SQL table along with their magical …

  4. What does SQL Select symbol || mean? - Stack Overflow

    Apr 29, 2014 · Microsoft SQL Server is one of the exceptions: it doesn't support ||, and requires +.

  5. SQL User Defined Function Within Select - Stack Overflow

    I have a user defined function in SQL called getBuisnessDays it takes @startdate and @enddate and returns the number of business days between the two dates. How can I call that function within my s...

  6. SQL GROUP BY CASE statement with aggregate function

    SQL GROUP BY CASE statement with aggregate function Asked 16 years, 6 months ago Modified 2 years, 8 months ago Viewed 346k times

  7. SQL Replace multiple different characters in string

    Aug 30, 2016 · 11 We used a function to do something similar that looped through the string, though this was mostly to remove characters that were not in the "@ValidCharacters" string.

  8. Function vs. Stored Procedure in SQL Server - Stack Overflow

    When should I use a function rather than a stored procedure in SQL, and vice versa? What is the purpose of each?

  9. T-SQL - function with default parameters - Stack Overflow

    From Technet: When a parameter of the function has a default value, the keyword DEFAULT must be specified when the function is called in order to retrieve the default value. This behaviour is different …

  10. How to execute function in SQL Server 2008 - Stack Overflow

    Jan 26, 2014 · how to call scalar function in sql server 2008 Each time, I try entering the Function using the syntax shown here in SQL Server Management Studio, or SSMS, to see the results, and each …