上一页 1 ··· 42 43 44 45 46 47 48 49 50 ··· 203 下一页
摘要: 执行语句: -- tag表结构create table tag( id number(12), name nvarchar2(20), primary key(id) ) -- tag充值 insert into tag select rownum, dbms_random.String('*',d 阅读全文
posted @ 2022-01-29 19:53 逆火狂飙 阅读(122) 评论(0) 推荐(0)
摘要: 假设有这样一张没有事先设定主键的表: create table test( id number(12) ) 这样给它填充数据: insert into test(id) values (1); insert into test(id) values (2); insert into test(id) 阅读全文
posted @ 2022-01-29 19:14 逆火狂飙 阅读(155) 评论(0) 推荐(0)
摘要: 首先创建一张含千条记录的tag表: tag表定义: create table tag( id number(12), name nvarchar2(20), primary key(id) ) 插值: insert into tag select rownum, dbms_random.String 阅读全文
posted @ 2022-01-29 18:42 逆火狂飙 阅读(70) 评论(0) 推荐(0)
摘要: 代码: <!DOCTYPE html> <html lang="utf-8"> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <head> <title>圆内摆线模拟</title> <style type= 阅读全文
posted @ 2022-01-20 18:55 逆火狂飙 阅读(140) 评论(0) 推荐(0)
摘要: 代码如下: package test; import java.util.regex.Pattern; /** * 判断字符串是否是double数(实数) * */ public class Test9 { public static void main(String[] args) { Strin 阅读全文
posted @ 2022-01-18 19:36 逆火狂飙 阅读(2763) 评论(0) 推荐(0)
摘要: 代码: package test; import java.math.BigDecimal; import java.text.DecimalFormat; import java.text.NumberFormat; public class Test8 { public static void 阅读全文
posted @ 2022-01-18 19:22 逆火狂飙 阅读(47) 评论(0) 推荐(0)
摘要: 请见代码: <!DOCTYPE html> <html lang="utf-8"> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <head> <title>JS中亦有哈希表</title> <style t 阅读全文
posted @ 2022-01-17 19:02 逆火狂飙 阅读(105) 评论(0) 推荐(0)
摘要: 建表时即添加check约束 create table emp9( id number(3), name nvarchar2(20) check(name='hero' or name='ufo'), primary key(id) ) 查询该表的所有约束: select constraint_nam 阅读全文
posted @ 2022-01-15 12:37 逆火狂飙 阅读(120) 评论(0) 推荐(0)
摘要: 代码: <!DOCTYPE html> <html lang="utf-8"> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <head> <title>取某节点下一类子节点示例</title> </head 阅读全文
posted @ 2022-01-15 11:20 逆火狂飙 阅读(76) 评论(0) 推荐(0)
摘要: 用Html5/Canvas绘制铝圈蓝底汽车速度仪表盘 阅读全文
posted @ 2022-01-15 10:45 逆火狂飙 阅读(256) 评论(0) 推荐(0)
上一页 1 ··· 42 43 44 45 46 47 48 49 50 ··· 203 下一页
生当作人杰 死亦为鬼雄 至今思项羽 不肯过江东