Is there any function in SQL Server which change the noun from singular to plural form?
feedback
|
|
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! | |||||||||||
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. | |||
|
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:
Alternatively, you could make the table just be exceptions, i.e. words that can't be pluralized with the simple addition of an | |||
|
feedback
|
Returns
Unfortunately it just relies on observation that the | |||
|
feedback
|
|
Do you want to use this for display purposes? If yes, I wouldn't do it like that. 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" | |||
|
feedback
|