I have two tables that I want to update, Account and CcInfo. Should I update it like this:
UPDATE Account
SET Accounts.Username = 'test',
Accounts.Password = 'password'
WHERE Account.AccountId = '1'
UPDATE CcInfo
SET CcInfo.Number = '1111111111111111',
CCInfo.ExpDate = '0408',
CCInfo.Cvv = '123'
WHERE CcInfo.CcInfoId= '5'
OR
UPDATE Accounts, CcInfo
SET Accounts.Username = 'test',
Accounts.Password = 'password',
CcInfo.Number = '1111111111111111',
CCInfo.ExpDate = '0408',
CCInfo.Cvv = '123'
WHERE CcInfo.CcInfoId= '5'
AND Accounts.AccountId = CcInfo.AccountId