上一页 1 ··· 12 13 14 15 16
摘要: Bootstrap <link rel="stylesheet" href="https://cdn.staticfile.org/twitter-bootstrap/3.3.7/css/bootstrap.min.css"> <script src="https://cdn.staticfile. 阅读全文
posted @ 2019-07-26 05:22 不咬人的兔子 阅读(453) 评论(0) 推荐(0)
摘要: <html> <body> <h4>横跨两列的单元格:</h4><table border="1"><tr> <th>姓名</th> <th colspan="2">电话</th></tr><tr> <td>Bill Gates</td> <td>555 77 854</td> <td>555 77 阅读全文
posted @ 2019-07-11 18:29 不咬人的兔子 阅读(146) 评论(0) 推荐(0)
摘要: <input>为html中的输入框在html5中加入了新的input类型html: <input type="text"> 普通输入框 <input type="textarea"> 大文本输入框 <input type="password"> 与text一样,只不过输入的内容会用圆点或者星号隐藏< 阅读全文
posted @ 2019-07-09 09:51 不咬人的兔子 阅读(1109) 评论(0) 推荐(0)
摘要: <!doctype html> <html> <head> 引入包,标题 </head> <body> html代码,用来显示页面 </body> <script> javascript代码用来处理页面效果,传参等 </script> </html> 阅读全文
posted @ 2019-07-09 09:25 不咬人的兔子 阅读(120) 评论(0) 推荐(0)
摘要: create or replace trigger tr_test --创建名为tr_test的触发器 AFTER INSERT OR UPDATE ON table1 --对table1进行插入和更新操作时触发,也可以 AFTER DELETE ON table1 for each row --每 阅读全文
posted @ 2019-06-27 10:52 不咬人的兔子 阅读(130) 评论(0) 推荐(0)
摘要: --创建表 CREATE TABLE 表名 ( t_name varchar(20), t_password varchar(20) ) --tablespace 表空间名字; --查询表TEST2的字段类型select * from user_tab_columns where table_nam 阅读全文
posted @ 2019-06-25 11:12 不咬人的兔子 阅读(269) 评论(0) 推荐(0)
摘要: --创建存储过程CREATE OR REPLACE PROCEDURE sp_test1IS--变量定义Begin--sql语句commit;End; --游标CREATE OR REPLACE PROCEDURE sp_test1ascursor c is select * from test;- 阅读全文
posted @ 2019-06-25 11:06 不咬人的兔子 阅读(110) 评论(0) 推荐(0)
上一页 1 ··· 12 13 14 15 16