create view  v_ecc_acccount_view
as
select t.customer_id,t.pri_card_id,t.account_type,t.account_status,t.created_date 
from ecc_bj.ecc_account t
这样加with read only创建试图后对于表ecc_account 是不可以插入或修改数据的?可是为何还可以修改呢.请问是我没有理解with read only的用途吗?还是什么原因.