一些常用正则总结
摘要:二:常用的一些正则表达式:1。^/d+$ //匹配非负整数(正整数 + 0)2。^[0-9]*[1-9][0-9]*$ //匹配正整数3。^((-/d+)|(0+))$ //匹配非正整数(负整数 + 0)4。^-[0-9]*[1-9][0-9]*$ //匹配负整数5。^-?/d+$ /...
阅读全文
posted @
2014-07-25 10:35
cheneywang
Oracle中查看所有表和字段
摘要:获取表字段: select * from user_tab_columns where Table_Name='用户表' order by column_name 获取表注释: select * from user_tab_comments where Table_Na...
阅读全文
posted @
2014-07-17 11:36
cheneywang
阅读(251)
推荐(0)