Viewing 15 posts - 16 through 30 (of 49 total)
Would you please test with this data :
1 Campaign1 Beverage
2 Campaign2 Beverage
3 Campaign3 Food
4 Campaign4 Beverage
5 Campaign5 Hot Drinks
6 Campaign6 Advertizing
7 Campaign7 Marketing
With your code it will return :
6 Campaign6 Advertizing
1 Campaign1 Beverage
3 Campaign3 Food
5 Campaign5 Hot...
July 14, 2017 at 12:06 pm
i need to get the data depend on Category (Food,beverage, hot drinks,....)
but to be not duplicated for example if i have first row Beverage so when i select second...
July 14, 2017 at 11:34 am
1 Campaign1 Beverage
3 Campaign3 Food
2 Campaign2 Beverage
4 Campaign4 Food
6 Campaign6 Beverage
5 Campaign5 Food
so result to be depend on category, and can not be duplicated by previous or next row, until no other choice
July 14, 2017 at 11:18 am
return two records :
1 Campaign1 Beverage
3 Campaign3 Food
July 14, 2017 at 10:46 am
the below working find with three rows :
DECLARE @test-2 TABLE (ID int, Name varchar(30), Category_Sort varchar(30)); Insert into @test-2 values(1,'Campaign1','Beverage') ,(2,'Campaign2','Beverage') ,(3,'Campaign3','Food') ;with mycte...
July 14, 2017 at 10:36 am
Upload is done automatically , the user will select multiple files , then will press upload button, everything must be added to sql server table , this why i use...
June 3, 2016 at 8:46 am
i used c# to do that using :
http://www.nrecosite.com/video_info_net.aspx
Download package and add reference to NReco.VideoInfo.dll assembly
var ffProbe = new NReco.VideoInfo.FFProbe();
var videoInfo = ffProbe.GetMediaInfo(pathToVideoFile);
Console.WriteLine(videoInfo.FormatName);
Console.WriteLine(videoInfo.Duration);
May 25, 2016 at 3:08 pm
Actually i have google calendar file ics, when import it , it comes in one column everything so the whole script i did to have the previouse table is the...
July 5, 2015 at 4:03 am
""" so be polite """ You said . amazing reply in technical forums, thanks by the way:-)
December 30, 2014 at 1:15 pm
Steve, please don't give me your advice, if you need to help you will do, if you don't , just don't reply, because sometimes anyone can search ,learn...
December 30, 2014 at 3:57 am
if you please can you just help me to do it
December 29, 2014 at 4:26 pm
Ok , i have XML file and i import it to table from path, no wi need just to replace "c:\------" to just @path
the below is my script...
December 29, 2014 at 4:09 pm
Viewing 15 posts - 16 through 30 (of 49 total)