I have a table called webqueries
with a column named qQuestion
of data type text
(sql server 2008). I want to create a count on words used in qQuestion
(excluding 'and', 'is' etc). My goal is to see how many times a person has asked a question about a specific product.
相关问题
- React Native Inline style for multiple Text in sin
- SQL to Parse a Key-Value String
- How to evaluate an input in the WHERE clause
- How to count number of elements with AQL?
- How to change the first two uppercase characters o
相关文章
- 放在input的text下文本一直出现一个/(即使还没输入任何值)是什么情况
- Code for inserting data into SQL Server database u
- SQL Server 2008 Change Data Capture, who made the
- How do we alias a Sql Server instance name used in
- How to do a UNION on a single table?
- SQL Group by Count of Counts
- SQL Server drop and recreate indexes of a table
- How to generate sequential row number in tsql?
You could create a table-valued function to parse words and join it to your query against qQuestion. In your schema, I recommend using
varchar(8000)
orvarchar(max)
instead oftext
. Meanwhile, the following should get you started: