Several years ago, I used a cgi based tool that allowed me to upload a csv file to a
server and load the data into either a new table or an existing table.
Anyone happen to know of one like it now. I can't seem to find it in my archives
anymore.
I know I can do it with load data infile, but I
We keep a timecard database and I was just asked how much time had been charged to a
particular project code. No problem says I and did the following:
select sum(worktime) from timecard where tcacct=project;
The answer came back 182. Then I was asked who had spent time on the project.
the qu