0
雖然我對SQL有相當的經驗(DB2環境),但我是MySQL的新用戶。我正在使用工作臺來運行查詢和更新語句。我在更新表中的數據時遇到了問題,這是我之前能夠做到的。我能選擇行,但是當我去基於同樣的標準進行更新,返回的信息是:無法在MySQL中更新表格,我正在使用工作臺
**0 row(s) affected Rows matched: 9 Changed: 0 Warnings: 0**
Update gina1.proj001_bcbs set contract_percentage = 1.50
where contract_category = 'All Other Services'
and doctor = 'JSmith' ;
When I run the same WHERE clause with a select I get the correct list of records.
**9 row(s) returned** and I get the correct list of data.
select * from gina1.proj001_bcbs
where contract_category = 'All Other Services'
and doctor = 'JSmith' ;
我不相信我登錄,但我不能肯定地說,我沒有準備好關於重置日誌的地方。如果有人可以幫助它會很好。
尤金,感謝您的答覆。我沒有意識到這是它的工作原理。 – user1243180 2012-03-02 06:13:44