Posted by Alan | Posted in HTML | Posted on 15-03-2011-05-2008
0
Posted by Alan | Posted in SQL | Posted on 04-03-2011-05-2008
0
Today I was writing a query to retrieve a number of records in a table which were associated to several different identifiers from a second table, which in turn were resolved from a third table.
I had a quick look on line to see if there were any quick examples I could start the basis off, but most examples were for just obvious queries or single count(*) and misrepresented. So I have an example of my solution below:
SELECT
COUNT(1) as "Count",
table2.name as "Name"
FROM table1
LEFT JOIN table2 on table2.id = table1.table2id
WHERE table1.table2id IN
(
SELECT table2.id FROM table2 WHERE table2.field2='clause'
)
GROUP BY table2.name
Read the rest of this entry »
Posted by Alan | Posted in Job | Posted on 23-10-2010-05-2008
0
Started working at KMP Digitata this month. The post is working as a web developer so gives me the opportunity to work with new technologies and learn more about web application servers past my previous experience with JBoss. Things are going well but once again means that personal projects are on hold, currently enjoying my free time away from the codeface!
Posted by Alan | Posted in Site | Posted on 27-07-2010-05-2008
0
After development on my own site had slowed a bit, I decided to step back and use a fully fledged dedicated CMS on my domain.
I’ve used WordPress before but never much enjoyed my experience of it. The back-end is a overly comprehensive and I find it to be filled with a large amount of guff that isn’t easily removed.
However, in the past couple of months, after dabbling in it for a client, I’ve managed to realise the potential to hack and customise the CMS to my own needs. It’s something new to work on anyway.