首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 软件管理 > PowerDesigner >

怎么插入insert_update,delete_select特殊字符&到oracle表中

2012-07-08 
如何插入insert_update,delete_select特殊字符&到oracle表中SQL insert into t_ch values(&a,9)---要插

如何插入insert_update,delete_select特殊字符&到oracle表中

SQL> insert into t_ch values(&a,9);---要插入特殊字符&到数据库的表中已创建 1 行。SQL> commit;提交完成。SQL> select * from t_ch;A                         B---------------- ---------- 000000000000011          8 000000002222211          82                         2999                       91,第一种方式插入特殊字符&SQL> insert into t_ch values('&'||'a',9);已创建 1 行。SQL> select * from t_ch;A                         B&a                        92,第二种方式插入特殊字符&SQL> insert into t_ch values(chr(ascii('&')),2);已创建 1 行。SQL> commit;提交完成。SQL> select * from t_ch;A                   B---------- ----------&                   2

?

热点排行