I am looking to set a variable in SQLTalk to be used in the where clause of my actual sql statement. I have it working in SQL Server using the following:
DECLARE @latestentry datetime
Select @latestentry = MAX(StartDate) From Start
Select SubscriptionID, StartDate
From Start
WHERE StartDate =...
Looking for the basics of a SQL Talk query that references SQL. Here is what I have so far but what I am ultimately looking to do is:
Connect to SQLBase
Run this query
Write the records to a delimited text file
Disconnect
If anyone could provide a simple example of a script that contains the...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.