Tagged Questions

18
votes
9answers
5k views

Functions vs Stored Procedures

Let's say I have to implement a piece of T-SQL code that must return a table as result. I can implement a table-valued function or else a stored procedure that returns a set of rows. What should I ...
10
votes
4answers
4k views

How can I combine multiple rows into a comma-delimited list in SQL Server 2005?

Right now, I have a SQL Query like this one: SELECT X, Y FROM POINTS It returns results like so: X Y ---------- 12 3 15 2 18 12 20 29 I'd like to return results all in one row, like ...
5
votes
6answers
86 views

Sql function to make noun plural

Is there any function in SQL Server which change the noun from singular to plural form?
5
votes
2answers
50 views

Oracle SQL creating a function - confusing compile errors

Based off of how to return a dynamic result set in Oracle function I'm trying to make a function that will return one row with several counts from several tables. Here's what I have so far: CREATE ...
5
votes
2answers
525 views

Creating Nondeterministic functions in SQL Server using RAND()

After a bit of searching and reading the documentation, it's clear that you can write user defined functions in SQL Server that are marked as either deterministic or nondeterministic depending on ...
4
votes
3answers
171 views

Using SQL & Perl together - Which should be used for common functions?

I didn't find any dupes of this question, but if there is one or more, I'm sorry - please comment with link. The question is basic, as probably is the answer. If I'm using Perl to execute & act ...
4
votes
2answers
452 views

Sql Server deterministic user-defined function

I have the following user-defined function: create function [dbo].[FullNameLastFirst] ( @IsPerson bit, @LastName nvarchar(100), @FirstName nvarchar(100) ) returns nvarchar(201) as begin ...
4
votes
6answers
160 views

Things which can be done with MYSQL instead of involving PHP [closed]

What are the must-know MYSQL functions (like IF etc..,) which every web developer should know?
4
votes
1answer
170 views

MySQL stored procedure for duplicating records from 4 inter-related tables

I have 3 tables, networks, nodes, networknodes, networkconnections. networknodes has 3 fields network_node_id, network_id, and node_id, the last two are forien key references to network. and a ...
4
votes
1answer
265 views

Function within a Function TSQL

Can I call a scalar function within a table-valued function? Thanks
4
votes
3answers
135 views

How Can I do this?

I have a table records(ID, ParentID) containg this data ID ParentID 1 null 2 1 3 2 4 2 5 3 6 null 7 6 If you draw this table in hierarchy as a family ...
4
votes
9answers
1k views

Check if a string is an email address in PHP

I am trying to do an SQL query, but I need to check somehow if the value is an email address. I need a way to check if $user is an email address, because I have user values such as this in my table. ...
4
votes
7answers
6k views

Best way to convert DateTime to “n Hours Ago” in SQL

I wrote a SQL function to convert a datetime value in SQL to a friendlier "n Hours Ago" or "n Days Ago" etc type of message. And I was wondering if there was a better way to do it. (Yes I know ...
3
votes
2answers
124 views

Solution to “cannot perform a DML operation inside a query”?

I am using a Data Analysis tool and the requirement I have was to accept a value from the user, pass that as a parameter and store it in a table. Pretty straighforward so I sat to write this create ...
3
votes
3answers
91 views

Is this a safe way to filter data and prevent SQL-injection and other attacks?

I created two simple functions to filter inserted data before it's entered into a mysql query. For formfields (I am also using regular expressions to check each field individually. // Form filter ...
3
votes
1answer
71 views

What is the affect of CONVERT() on INDEX while searching?

I am using SQL Server 2008. I have a Non-Unique Non-clustered index on a DateTime Column "DateFrom". I am searching the table based on this column. I just wanted to know the affect of CONVERT() ...
3
votes
2answers
503 views

PostgreSQL: Why can't subqueries as expressions return more than one row, but functions can?

If I try to create a column whose value is a select returning more than one row, I get an error. => select (select 1 union select 2); ERROR: more than one row returned by a subquery used as an ...
3
votes
1answer
401 views

Is it possible to create a global stored procedure at Sql server level

I created a query that takes a database backup at certain specified location. I want to use it as a stored procedure but this should act as a global stored procedure so that whenever this SP is ...
3
votes
3answers
1k views

mysql join table on itself

I am having problems with this and I'm hoping it's possible. I have a table from wordpress which stores post meta data, so the columns and field data cannot be changed (Easily). The table structure ...
3
votes
2answers
3k views

sql split string by space into table in postgresql

I looking for a function like regexp_split_to_table, but our db is version 8.2.9, so it doesn't have it. I'm really only splitting on a space, so a string like how now brown cow would return ...
2
votes
7answers
73 views

Get the first letter of each word in a SQL string [closed]

Possible Duplicate: sql to pick apart a string of a persons name and output the initials In MS-SQL Server, there is a way to get the first letter of each word in a string? For example: ...
2
votes
2answers
82 views

Inconsistent behaviour when executing a function from within Oracle SQL*Plus?

I am new to Oracle and SQL and am trying to execute a simple test function from within SQL*Plus. My function is called tf (for Test Function) and it is defined in a file called tf.sql as follows ; ...
2
votes
2answers
80 views

Format YYYYMMDD date to text on SQL Select [closed]

Possible Duplicate: Specific Date Format in mysql select date from table returns 20111010 what select FORMATFUNC(????, date,?) from table returns October 10, 2011? mysql but there has to ...
2
votes
1answer
156 views

generate_series in MySQL

What is the PostgreSQL's generate_series equivalent in MySQL? How to convert this query to MySQL? select substr('some-string', generate_series(1, char_length('some-string'))) Sample output from ...
2
votes
2answers
98 views

PL/pgSQL: finding all groups person belongs to (also indirectly)

Simple intro: I have a database with users and groups. Every user might be a member of one or more groups. Every group might have one or more parent groups. Schema: CREATE TABLE users( username ...
2
votes
3answers
117 views

SQL Group By On Output From User Defined Function

Is it possible, in Oracle, to group data on the output of a user defined function? I get errors when I try to, and it best illustrated by the below example: I am trying to interrogate results in ...
2
votes
2answers
126 views

Passing parameters from Stored Procedure to Function (inside Stored Procedure)

I have a problem and I have researched Stackoverflow for answers without any luck. I have manage to build a Stored Procedure that uses a function called GetSubtree_relvalue within it. The stored ...
2
votes
1answer
164 views

User defined function returning null in sql server

I've created a user defined scalar function in sql server 2005, and I want it to return me the id based on the passing parameter name. But the following function always returns me null, even the ...
2
votes
2answers
120 views

SQL Date Function

I may be using the wrong term (hence why I can't find it on google). "Are there any functions or common code for Accounting Months Deliminations?" For Example, this month started on a friday but on ...
2
votes
5answers
236 views

Very easy SQL function returns boolean 1 (true) instead of resource

I have this function function query($query) { return mysql_query($query) or die(mysql_error()) } but when I call it like $last = query("SELECT * FROM jubox ORDER BY id desc LIMIT 45"); ...
2
votes
4answers
94 views

Out of the two sql queries below , suggest which one is better one. Single query with join or two simple queries?

Assuming result of first query in A) (envelopecontrolnumber,partnerid,docfileid) = (000000400, 31,35) A) select envelopecontrolnumber, partnerid, docfileid from envelopeheader where envelopeid ...
2
votes
4answers
127 views

T SQL how to modify a string by removing all the part after the last delimiter

I'm struggling to find the right functions with SQL Server 2008 to rectify any strings coming like: \\myserver\mydir1\dir2\test.txt or \\myserver2\dir1\dir2\dir3\test.txt. At the end, the result ...
2
votes
2answers
189 views

Loop a table valued function sql

I have a table valued function which returns the boss of a person for a given day. dbo.Bosses(@empId, @date) How do I loop through this function with information from another? I.e, I want to ...
2
votes
2answers
42 views

Column Header from Function Result

I have a function that returns dates in a specific format FormatDate(int PreviousMonths, int Format) returns varchar(100) - E.g. FormatDate(0,2) returns 'June 2011' But I'm having trouble aliasing ...
2
votes
1answer
606 views

How to create a function in DB2 that returns the value of a sequence?

How to create a function in DB2 that obtains a value from a sequence and returns it? It should be possible to use that function in select or insert statement, e.g: select my_func() from xxx insert ...
2
votes
3answers
48 views

seperate queries of sql functions?

i am using php and mysql combination . My case is I am using two queries (one 'select' and 'insert') for an activity, sometimes 3 queries . that will be done very frequently by diffrent users . I am ...
2
votes
1answer
170 views

Script function to check if IP is whitelisted

I have a Python script which blocks some IPs if they perform some actions. This script contains a function to check if the IP is already blocked. In addition to this, I'd like the function to also ...
2
votes
2answers
206 views

Oracle Count with Function

I have a SQL like this. SELECT A.HESAP_NO, A.TEKLIF_NO1 || '/' || A.TEKLIF_NO2 AS TEKLIF MV_K(A.TEKLIF_NO1,A.TEKLIF_NO2, A.DATE) AS KV FROM S_TEKLIF A When i want calculate ...
2
votes
2answers
227 views

oracle sql help using ratio_to_report analytic

I have gotten stuck on this problem and would like to see if anyone can help out. I am trying to get the percentage of rows that a set of particular value has. Best explained by example. I can do ...
2
votes
1answer
185 views

Mysql function returning a value from a query

i want to create a function which calculate a value using a query and i have problem returing the value: Shortened, my query is: CREATE FUNCTION func01(value1 INT , monto DECIMAL (10,2)) ...
2
votes
1answer
148 views

TSQL Function Recursion

I have this: CREATE FUNCTION [dbo].[udf_SLA_AdjustDateTimeForBusinessHours] ( @DateTime DateTime ) RETURNS DateTime AS BEGIN DECLARE @AdjustedDate DateTime; If ...
2
votes
2answers
125 views

How can I remove certain chars before the space in T-SQL?

I'm trying without any luck to come up with a method to pass Bruno Miguel Alexandre into B. Miguel Alexandre and Bruno Alexandre into B. Alexandre just in SQL so I can make this part of a big ...
2
votes
2answers
111 views

SQL Server 2008 Field Function - Return 'ok' or 'no' depending on relation between two other fields

I am fairly new to the more advanced database features, such as functions, but I was curious how you would do this in MSSQL (or if it is possible even): If I have a table and the structure is ...
2
votes
6answers
386 views

php query function / class

It must be Monday, the heat or me being stupid (prob the latter), but for the life of me I cannot get a simple php function to work. I have a simple query $sql = mysql_query("SELECT * FROM table ...
2
votes
2answers
674 views

postgresql syntax while exists loop

I'm working at function from Joe Celkos book - Trees and Hierarchies in SQL for Smarties I'm trying to delete a subtree from an adjacency list but part my function is not working yet. WHILE EXISTS ...
2
votes
1answer
1k views

Check if a given DB object used in Oracle?

Hi does any one know how to check if a given DB object (Table/View/SP/Function) is used inside Oracle. For example to check if the table "A" is used in any SP/Function or View definitions. I am ...
2
votes
2answers
121 views

Modifying a function used as a column default in SQL Server

We're having an issue with a poorly coded SQL function(which works fine in live, but not in our test environment). This function is used to provide a default value in many tables, trying to ALTER the ...
2
votes
4answers
171 views

Format an SQL Query using a function

I have a SELECT query that returns multiple lines for the same record due to a group by on a field that has many different results e.g. ID Name x 1 test a 1 test b 1 test c ...
2
votes
2answers
700 views

ACCESS Jet SQL INT() Function -> SQL Server Function

I am converting an Access Jet-SQL query into T-SQL and I came upon the Int() function. Now, I would like to convert it into T-SQL, and this is what I have so far: --Works for Positive Select ...
2
votes
8answers
3k views

Drupal - logic of the template.php file

I have spent a good proportion of time today looking into expanding a drupal site I inherited, convinced that the issues I face were down to my bespoke SQL query. I have since realised that the SQL ...

1 2 3 4 5