Select *
From SubAccounts
Where CustomerID=899
Go
I am lazy or want to be effecient and not have people enter all this data.
Is there a method to update the calls table with this additional
information?
I had though about an Insert statement like
Insert SubAccount
Select *
From ************ What would go here to read a text file?
Another thought I had was something like take the values that are space
delimited, changing them to 'value', and use something like
Insert SubAccounts(login, password, firstname, lastname, phonehome, etc,
etc, etc)
Values (row1 info)
Values (row2 info)etc.....
or maybe
Insert SubAccounts(login, password, firstname, lastname, phonehome, etc,
etc, etc)
Values (row1 info) AND
Values (row2 info) AND
Values (row3 info) etc.....
Any suggestions?