摘要:
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 阅读全文
摘要:
建表 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 阅读全文
摘要:
我们知道常用的居中对齐方式有很多种例如: 但是在view中的文字对齐却不能简单的使用text-align: center;来实现,这种办法只能实现文字的水平居中, 要实现水平垂直居中 可使用如下方案 .td { display: flex; align-items: center; justify- 阅读全文
摘要:
// 声明部分 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 阅读全文
摘要:
自动换行: <text class='row-text'>{{item.comment}}</text> css: .row-text{ text-overflow: -o-ellipsis-lastline; overflow: hidden; text-overflow: ellipsis; d 阅读全文
摘要:
merge into的形式: MERGE INTO [target-table] A USING [source-table sql] B ON([conditional expression] and [...]...) MERGE INTO [target-table] A USING [sou 阅读全文
摘要:
例如: 当查看的是B列的重复值时:=IF(COUNTIF(B:B,B1)>1,"重复","") 阅读全文
摘要:
SELECT * FROM user_dependencies 阅读全文
摘要:
// 监听 $("#file0").change(function(){ Todo }) // 事件 onchange="fileCli(this)" function fileCli(obj){ Todo } 例如调用图片显示,第一种实在值改变之后执行, 第一种实在值改变之前执行, 阅读全文
摘要:
--创建表 create table TESTTABLE( id1 VARCHAR2(12), name VARCHAR2(32))select t.id1,t.name from TESTTABLE t insert into TESTTABLE (ID1, NAME)values ('1', ' 阅读全文