El_Pablo Posted January 28, 2009 Posted January 28, 2009 Hi, I'm creating a database in SQL Server since I cannot implement FM in my customer business. It's been too long since the last time I went in SQL. How do we create a lookup for a field? Thanx
kmtenor Posted January 28, 2009 Posted January 28, 2009 At the risk of being scolded that this forum is for Filemaker and not for SQL, (and if I understand your question correctly) I believe the following is what you're looking for: insert into newTable (tableId, tableName, tableAddr1, tableAddr2, tableCode) select '1', lookupName, lookupAddr1, lookupAddr2, 'test' from lookupTable where lookupId = @lookupValue The above code, using a subselect for the insert, emulates Filemaker's "Auto-Enter Looked Up Value" feature at the field definition level. You would have to replace the constants in the select statement with the values captured from your user. You could also accomplish the same thing with an update following your insert in your code. Do some google searches for 'insert subselect mssql' and you should find some direction. These are just two of the many ways it could be done. Hope that Helps. -Kevin
El_Pablo Posted January 28, 2009 Author Posted January 28, 2009 I know that we are in a FM forum, but since I am too accustomized to FM I forgot how to think SQL. For the lookup, would it be better to create an insert trigger?
kmtenor Posted January 28, 2009 Posted January 28, 2009 That would work, as well. In general, any time you can keep activity on the server-side, you'll improve the database performance, particularly when you're dealing with MSSQL over a network. The 'best' method is always defined by the application you're trying to create, and the environment in which you are operating. A quick search for 'mssql insert trigger' turned up quite a few options, but the one at the top should suffice as a guide (the site has been reliable and accurate in the past). http://www.devarticles.com/c/a/SQL-Server/Using-Triggers-In-MS-SQL-Server/ Good Luck! -Kevin
Recommended Posts
This topic is 5837 days old. Please don't post here. Open a new topic instead.
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now