Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have a above data where i want only second field of a particular 'description'. how will i be able to fetch only that part of data..??
Create a new table and drop the original:
New:
LOAD * WHERE Counter =2;
LOAD
Channel,
Week,
Date,
[Start Time],
[End Time],
Description,
autonumber([End Time], Description) as Counter
FROM
Old
Order By
[End Time]
;
Drop Table Old;