?临时表操作
--临时表存在的情况 删除
--每句后面的 ; 必须要 ,否则无法一起执行
drop table if exists a;
--把查询结果放入临时表,表名字母即可
--和sql中的规则不同
select * into temp table a from com_cache
?日期计算
-- :: 强制类型转换
--日期类型之间直接运算,
--没有sql中的 dateadd()函数
select '2011-4-29'::date -3*('2011-5-5'::date-'2011-4-29'::date+1)
?日期类型条件
--sql 只有一种样式
select * from com_cache where up_date = '2011-08-01';
--postgresql 这两个都行
--两个语句一起执行,sql可以出两个结果集
--postgresql只出一个
select * from com_cache where up_date = '2011-08-01';
select * from com_cache where up_date = '"2011-08-01"'
?NULL值的判断处理
---sql,postgresql都可以使用
SELECT coalesce(null, 'Empty')
SELECT NULLIF(1,2)
---sql可以,postgresql不可以
SELECT isnull(null, 'Empty')
?表头数据查看
--sql
select top 10 * from com_cache
--postgresql
select * from com_cache limit 10