上一页 1 2 3 4 5 6 7 ··· 40 下一页
摘要: 1. 复制表结构及其数据: create table table_name_new as select * from table_name_old 2. 只复制表结构: create table table_name_new as select * from table_name_old where 阅读全文
posted @ 2018-07-09 18:41 baby孔祥超 阅读(131) 评论(0) 推荐(0) 编辑
摘要: 建表 create table test_user( id VARCHAR2(12), name VARCHAR2(32), age number(2))select t.id,t.name,t.age from test_user t insert into test_user (ID, NAME 阅读全文
posted @ 2018-07-03 17:33 baby孔祥超 阅读(153) 评论(0) 推荐(0) 编辑
摘要: 我们知道常用的居中对齐方式有很多种例如: 但是在view中的文字对齐却不能简单的使用text-align: center;来实现,这种办法只能实现文字的水平居中, 要实现水平垂直居中 可使用如下方案 .td { display: flex; align-items: center; justify- 阅读全文
posted @ 2018-06-30 09:59 baby孔祥超 阅读(12767) 评论(1) 推荐(0) 编辑
摘要: // 声明部分 create or replace package Pro_Test_User is PROCEDURE Ins_Test_User(I_ID IN VARCHAR2,I_NAME IN VARCHAR2,I_AGE IN VARCHAR2,O_RET_CODE OUT NUMBER 阅读全文
posted @ 2018-06-29 12:24 baby孔祥超 阅读(3386) 评论(0) 推荐(0) 编辑
摘要: 自动换行: <text class='row-text'>{{item.comment}}</text> css: .row-text{ text-overflow: -o-ellipsis-lastline; overflow: hidden; text-overflow: ellipsis; d 阅读全文
posted @ 2018-06-28 15:54 baby孔祥超 阅读(691) 评论(0) 推荐(0) 编辑
摘要: merge into的形式: MERGE INTO [target-table] A USING [source-table sql] B ON([conditional expression] and [...]...) MERGE INTO [target-table] A USING [sou 阅读全文
posted @ 2018-06-28 11:43 baby孔祥超 阅读(224711) 评论(6) 推荐(14) 编辑
摘要: 例如: 当查看的是B列的重复值时:=IF(COUNTIF(B:B,B1)>1,"重复","") 阅读全文
posted @ 2018-06-28 10:05 baby孔祥超 阅读(321) 评论(0) 推荐(0) 编辑
摘要: SELECT * FROM user_dependencies 阅读全文
posted @ 2018-06-27 19:15 baby孔祥超 阅读(173) 评论(0) 推荐(0) 编辑
摘要: // 监听 $("#file0").change(function(){ Todo }) // 事件 onchange="fileCli(this)" function fileCli(obj){ Todo } 例如调用图片显示,第一种实在值改变之后执行, 第一种实在值改变之前执行, 阅读全文
posted @ 2018-06-27 11:32 baby孔祥超 阅读(284) 评论(0) 推荐(0) 编辑
摘要: --创建表 create table TESTTABLE( id1 VARCHAR2(12), name VARCHAR2(32))select t.id1,t.name from TESTTABLE t insert into TESTTABLE (ID1, NAME)values ('1', ' 阅读全文
posted @ 2018-06-26 15:58 baby孔祥超 阅读(293) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 40 下一页