C
Chris
Greetings,
To clear the air, I am a hardware guy and not a software guy by nature.
However, need to learn some basics quickly.
We have a Sql Express 2008 DB that houses some scanned data.
Using Sharepoint Designer, was able to whip up a quick DataGrid thing and
view the data - just don't like the limitation I have.
The table elements are below:
SELECT [StockID]
,[PalletBarcode]
,[BoxBarcode]
,[StockCode]
,[OrderNumber]
,[StatusID]
,[StatusDate]
,[RevisionStamp]
FROM [DataWhse].[dbo].[Stock]
WHERE BoxBarcode LIKE 'value%'
What I would like to try to learn how to do is:
Main Querey is display top 10 records for todays date.
Give an Input Box and Button to search for a Boxcode and display records
associated.
Also search for a PalletCode, Group and show all boxes on the pallet.
I think I can figure out the SQL for it, just get confused on how to code it.
If someone can give some examples - or better yet point me in the best
direction of resources - keeping my frame of reference. MSDN showing
libraries probably not the best location for newbies.
To clear the air, I am a hardware guy and not a software guy by nature.
However, need to learn some basics quickly.
We have a Sql Express 2008 DB that houses some scanned data.
Using Sharepoint Designer, was able to whip up a quick DataGrid thing and
view the data - just don't like the limitation I have.
The table elements are below:
SELECT [StockID]
,[PalletBarcode]
,[BoxBarcode]
,[StockCode]
,[OrderNumber]
,[StatusID]
,[StatusDate]
,[RevisionStamp]
FROM [DataWhse].[dbo].[Stock]
WHERE BoxBarcode LIKE 'value%'
What I would like to try to learn how to do is:
Main Querey is display top 10 records for todays date.
Give an Input Box and Button to search for a Boxcode and display records
associated.
Also search for a PalletCode, Group and show all boxes on the pallet.
I think I can figure out the SQL for it, just get confused on how to code it.
If someone can give some examples - or better yet point me in the best
direction of resources - keeping my frame of reference. MSDN showing
libraries probably not the best location for newbies.