Viewing 14 posts - 16 through 29 (of 29 total)
can you try ?
update table set field=REPLACE(field, '@', '\')...
November 5, 2013 at 10:53 am
@sean, are you sure 5th May is a Saturday ? in this case i want to May 6th 2014.
Its allright to assume 4 weeks each month ?
November 5, 2013 at 9:57 am
Cool, thank you. Meanwhile i was trying to solve using my old attempt, got it also ..finally )
declare @Phrases TABLE
(
phrase varchar(100)
)
DECLARE @Searchs TABLE
(
word varchar(100)
)
declare @NumberWords tinyint
insert into @Searchs (word) select...
April 21, 2013 at 2:41 pm
Sean Lange (4/19/2013)
April 19, 2013 at 10:26 am
reading time for full text search then )
much obliged Sean.
April 19, 2013 at 9:36 am
Yes, the example is very simplified, what i want to do is to find results that match all words of the search.
If i have the text "i have lunched with...
April 19, 2013 at 8:50 am
this is the Split function
FUNCTION [dbo].[Split](@String nvarchar(4000), @Delimiter char(1)) returns @Results TABLE (Items nvarchar(4000))
as
begin
declare @index int
declare @slice nvarchar(4000)
select @index = 1
if @String is null...
April 19, 2013 at 8:35 am
Obrigado Carlos ) ..funcionou muito bem.
December 20, 2012 at 2:12 am
ScottPletcher (12/18/2012)
You probably want to consider using an IDENTITY column to automatically assign...
December 18, 2012 at 10:19 am
Jason-299789 (2/6/2012)
select #temp.alunos_id, #groups.ID
from #temp
left...
February 6, 2012 at 8:36 am
The function Split works great 😛
Still, i did
update #tgroups set alunos_ids = replace(alunos_ids, ' ','')
and my previous query worked well, so i think i have to make sure...
February 6, 2012 at 8:24 am
Jason-299789 (2/6/2012)
so when looking for 565, you are trying to match...
February 6, 2012 at 8:16 am
but it if i do
select #groups.ID from #groups where alunos_ids like '%477%'
it does not answer NULL.
February 6, 2012 at 8:06 am
Done, as requested.
February 6, 2012 at 7:48 am
Viewing 14 posts - 16 through 29 (of 29 total)