I have a need to query a table from our MS SQL 2005 server,
I'm new to querying SQL however I can get the data I need by performing the following:
Open SQL Management Studio
Navigate to the database called 'EmailSender'
Navigate to the table called 'dbo.EmailSendLog'
Run the following query:
select * from EmailLog where Action like 'Create%'
Then it returns all the rows and columns that I need to process.
I've looked at the following functions
;================================