㈠ 怎么从一个数据库的表中对表中的值进行查询
第一个:select * from table where name like 'G[1-7]%'
第二个:select * from table where (convert(int,substring(name,3,1)) % 2)=0
第三个:select * from table where (convert(int,substring(name,3,1)) % 2)=1
第四个:select * from table where name like 'G9%'
答完了。。 一定没问题的。。 呵呵。。 给分吧朋友
㈡ 在sql数据库中怎么查询没有值的数据
--显示数据库属性默认值
sp_configure
--主键
sp_pkeys '要查的表名'
--所有列的信息,包括类型,默认值等
sp_columns '要查的表名'
㈢ 在oracle中如何找回被删除的数据
1、首先新建一张测试表TEST,里面输入记录。由于删除/更新/插入恢复步骤相同,这里仅演示删除数据的情况。