Is there any function in SQL Server which change the noun from singular to plural form?

link|improve this question

29% accept rate
4  
That would be difficult (in English, anyway) owing to the irregularity of pluralites. Cat->Cats, Mouse->Mice, Goose->Geese, Person->People... – Michael Jan 30 at 15:03
In what language? :) Sure, standard doesn't exist. – Kirill Polishchuk Jan 30 at 15:04
1  
Is there a SQL function that understands grammar for a given language??? No :) – Dems Jan 30 at 15:05
1  
In general, I'd consider this a "display" issue, and would avoid putting the logic in SQL Server. – Neville K Jan 30 at 15:20
out of curiosity how do you plan on identifying that a word is a noun? – Conrad Frix Jan 30 at 15:36
feedback

6 Answers

SQL itself doesn't have anything like this - but you could try to use the .NET PluralizationService introduced in .NET 4 - the same functionality that the Entity Framework uses to pluralize/singularize table names to object names.

You would have to write a SQL-CLR assembly to tap into the pluralization services, but it definitely seems like a doable thing!

link|improve this answer
+1 - nice, didn't know about that. – JNK Jan 30 at 15:09
Is it possible to use .NET 4.0 assemblies in SQL Server CLR? – Martin Smith Jan 30 at 18:28
1  
@MartinSmith - SQL CLR is currently (SQL 2008R2) limited to version 3.5 of the framework. The System.Data.EntityDesign assembly targets 4.0 (see my answer below) – EBarr Jan 30 at 19:18
@EBarr:guess we'll have to wait for SQL Server 2012 then.....it'll have SQL CLR v4 built-in – marc_s Jan 30 at 19:59
feedback

That function does not exist in SQL Server.

link|improve this answer
feedback

The function does not exist in SQL Server, as @aF mentioned. The one place I know if it existing is in Entity Framework 4+. The pluralization object can actually be instantiated and used.

SQL has the capacity to run CLR code--through SQL CLR. The main problem is that SQL CLR is limited to the .NET Framework 3.5. So you would either need to write some .net 4 code that operates on your tables. Alternately, you could use a product like Reflector and reverse engineer a 3.5 compatible version and run it inside SQL Server.

link|improve this answer
feedback

Nope, but it would be pretty easy to make a table for this if you have a limited set of words to check.

Example:

CREATE TABLE dbo.Plurals
( 
  id int IDENTITY,
  singular varchar(100),
  plural varchar(100)
)

INSERT INTO dbo.Plurals
VALUES
('cat', 'cats'),
('goose', 'geese'),
('man', 'men'),
('question', 'questions')

Alternatively, you could make the table just be exceptions, i.e. words that can't be pluralized with the simple addition of an s - then you could do an EXISTS check on that table, if it's not there then add an s and if it is then lookup the plural.

link|improve this answer
feedback
CREATE FUNCTION dbo.Pluralize 
(
    @noun nvarchar(50)
)
RETURNS nvarchar(50)
AS
BEGIN

DECLARE @QueryString nvarchar(4000)
SET @QueryString = N'FORMSOF(INFLECTIONAL,"' + @noun + N'")'
RETURN
(SELECT TOP 1 display_term
FROM sys.dm_fts_parser(@QueryString,1033,0,0))

END
GO

SELECT noun,
       dbo.Pluralize(noun)
FROM   (VALUES('cat'),
              ('mouse'),
              ('goose'),
              ('person'),
              ('man'),
              ('datum')) nouns(noun)  

Returns

noun   
------ ------------------------------
cat    cats
mouse  mice
goose  geese
person persons
man    men
datum  data

Unfortunately it just relies on observation that the TOP 1 expansion term for the noun is the plural form. I doubt that this is documented anywhere.

link|improve this answer
feedback

Do you want to use this for display purposes?
Something like "Your search returned 1 result" / "Your search returned 4 results" ?

If yes, I wouldn't do it like that.
Finding or writing a function that does this correctly for all special cases (let alone in several languages) is nearly impossible, and storing each needed text once in singular and once in plural form isn't much better.

At work, I'm dealing with multiple languages and lots of dynamically generated sentences like this a lot, and I found that completely avoiding the distinction of singular/plural forms at all is the easiest solution to manage:

"Number of results for this search: 1"

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.