Oct 8, 2002 #1 tollbooth MIS Joined Sep 20, 2002 Messages 9 Location US I know there is no way to do this: update notfoundinmimports,mhimports set notfoundinmhimports.found = 'y' where notfoundinmhimports.original_sym = mhimports.tradesymbol; However, is there a way to achieve the above via a command line argument?
I know there is no way to do this: update notfoundinmimports,mhimports set notfoundinmhimports.found = 'y' where notfoundinmhimports.original_sym = mhimports.tradesymbol; However, is there a way to achieve the above via a command line argument?
Oct 8, 2002 #2 sleipnir214 Programmer Joined May 6, 2002 Messages 15,350 Location US First of all, you can't update more than one table at a time. Second, from what OS are you attempting to performt he update? ______________________________________________________________________ TANSTAAFL! Upvote 0 Downvote
First of all, you can't update more than one table at a time. Second, from what OS are you attempting to performt he update? ______________________________________________________________________ TANSTAAFL!
Oct 8, 2002 Thread starter #3 tollbooth MIS Joined Sep 20, 2002 Messages 9 Location US UNIX Upvote 0 Downvote
Oct 8, 2002 #4 sleipnir214 Programmer Joined May 6, 2002 Messages 15,350 Location US Then something like echo "UPDATE....." | mysql [databasename] should do it. ______________________________________________________________________ TANSTAAFL! Upvote 0 Downvote
Then something like echo "UPDATE....." | mysql [databasename] should do it. ______________________________________________________________________ TANSTAAFL!