Physical Address

304 North Cardinal St.
Dorchester Center, MA 02124

Welcome to the skill header Forums. You can ask questions, get help, or help other members out. Join our Forum for free.

SQL Statements vers...
 
Notifications
Clear all

SQL Statements versus Queries? (Curious minds want to know)

3 Posts
2 Users
0 Reactions
51 Views
FStetson
Posts: 50
Topic starter
(@fstetson)
Trusted Member
Joined: 3 months ago

I have noticed that Skillheader uses SQL statements in virtually in every instance, such as opening subforms, dropdown fields and more.  Can you provide an insight as to why this is?  I am curious as I am more old school and prefer using queries and dedicated forms/tables to edit for drop downs for most occasions that a system admin can control and change overtime.  As I am not savvy in the workings of deploying a database using SQL servers, I am wondering if SQL statements make this easier to integrate. 

Please give us your take on this subject, we w2ould love to know.

2 Replies
Posts: 17
 ursh
Admin
(@ursh)
Member
Joined: 9 months ago

Do you have any example from the project? Please share so it can be more precise.

Reply
FStetson
Posts: 50
Topic starter
(@fstetson)
Trusted Member
Joined: 3 months ago

Sorry, I got waylaid in enhancements.  Here is one example;

New Po Sub Form:  Record Source:

SELECT tbl_PO_items.POItemsID, tbl_PO_items.POID, tbl_PO_items.ItmID, tbl_Items.ItmNm, tbl_PO_items.ItmQty, tbl_PO_items.ItmPrice, tbl_PO_items.ItmTotal
FROM tbl_Items INNER JOIN tbl_PO_items ON tbl_Items.ItmID = tbl_PO_items.ItmID;
Reply
Share: