About 43,200 results
Open links in new tab
  1. 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, …

  2. sql - How to execute Table valued function - Stack Overflow

    Oct 19, 2016 · How to execute function in SQL Server 2008. 0. Function is not working in table variable. 2.

  3. SQL User Defined Function Within Select - Stack Overflow

    Mar 18, 2015 · If it's a table-value function (returns a table set) you simply join it as a Table. this function generates one column table with all the values from passed comma-separated list. …

  4. sql - How to call User-defined function in SELECT statement with …

    Feb 7, 2018 · For example (if the scema is dbo), you can call the function with dbo.GetIptoCountry(): select *, dbo.GetIptoCountry(IP_address) as country from tblInfo …

  5. How do I use a SQL function inside my SQL query

    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

  6. Calling SQL Functions directly from C# - Stack Overflow

    Jun 10, 2010 · 1: Create a SQL scalar-valued function that performs the query and returns a bit. This could then be called directly from within the .Net client application using a "TEXT" …

  7. Calling SQL Defined function in C# - Stack Overflow

    You can't just call the function name, you will need to write an inline SQL statement which makes use of the UDF: SqlCommand Totalf = new SqlCommand("SELECT dbo.Tcupom(@code)", …

  8. t sql - Calling Scalar-valued Functions in SQL - Stack Overflow

    CREATE FUNCTION dbo.test_func (@in varchar(20)) RETURNS INT AS BEGIN RETURN 1 END GO SELECT dbo.test_func('blah') Are you sure that the function exists as a function and …

  9. how to run a sql function in pl sql developer - Stack Overflow

    Mar 8, 2016 · To call a function in a SQL statement is intended to compute some return value, reading informations from parameters; so, functions with OUT parameters make not sense in …

  10. Passing multiple values to a parameter of a function in SQL

    Nov 3, 2015 · I just ran into this, and I used the CROSS APPLY solution from this post: SQL Server: run function for each row based on the provided row value. To use CROSS APPLY, …

Refresh