数据库相关
sql查询,数据库操作等
光之国的小怪兽
这个作者很懒,什么都没留下…
展开
-
oracle有条件执行插入语句
oracle有条件执行插入语句 oracle 后面跟条件进行插入操作: insert into table_name (id,name ) select '1', '2' from dual where not exists ( SELECT id FROM table_name WHERE (id = '1')); 记录一下...原创 2020-04-16 13:44:49 · 1866 阅读 · 0 评论 -
查询表中所有字段
1. oracle 查询某个表的字段名: `select column_name from user_tab_columns where table_name='tableName'` 多行合并为一行,便于操作,可以用 wm_concat : `select wm_concat(column_name) from user_tab_columns where table_name='tableN...原创 2020-04-15 16:20:18 · 2427 阅读 · 0 评论