Click here to Skip to main content
15,885,063 members

Comments by Geofferz (Top 34 by date)

Geofferz 2-Mar-16 7:48am View    
just updated the question, this is the select statement i had to return all data from the different tables without the splitting of columns:

select distinct f.fle_id,
f.filename,
c.clp_clip_name,
f.FileExtension,
c.locationsList,
f.UNC,
f.Directory,
f.framerate
from lls_clips C with (NOLOCK)
inner join lls_fileimports F with (NOLOCK)
on c.fle_id = f.fle_id
inner join lls_jobs J with (NOLOCK)
on c.fle_id = j.fle_id
where J.LastUpdated >= dateadd(day, -1, getdate())
Geofferz 29-Jun-15 7:21am View    
Awesome thanks that helped me point me in right direction :)
Geofferz 10-Jun-15 8:44am View    
Thanks this worked!!
Geofferz 10-Jun-15 7:21am View    
so just to be clear i would like to return select CLP_Clip_Name + '_' + CLP_Clip_Title + CLP_Duration from....

so combining all 4 together to make one filename but i only want to bring back part of the CLP_Clip_title not full title. that make sense?
Geofferz 10-Jun-15 6:33am View    
Thanks this site was very helpful