2011年9月19日

摘要: 查询name字段中包含有“明”字的。 select * from table1 where name like '%明%' 查询name字段中以“李”字开头。 select * from table1 where name like '李%' 查询name字段中含有数字的。 select * from table1 where name like '%[0-9]%' 查询name字段中含有小写字母的。 select * from table1 where name like '%[a-z]%'这里我做的测试好像是'李*&# 阅读全文
posted @ 2011-09-19 15:11 h2内存数据库 阅读(436) 评论(0) 推荐(0)
摘要: PL/SQL Developer是Oracle数据库中用于导入或导出数据库的主要工具。导出步骤:1 tools ->export user object 选择选项,导出.sql文件。2 tools ->export tables-> Oracle Export 选择选项导出.dmp文件。导入步骤:注:导入之前最好把以前的表删除,当然导入另外数据库除外。1 tools->import tables->SQL Inserts导入.sql文件。2 tools->import talbes->Oracle Import然后再导入dmp文件。一些说明:Tools 阅读全文
posted @ 2011-09-19 14:39 h2内存数据库 阅读(1194) 评论(0) 推荐(0)

导航