[ JS ] 팝업창 가운데 띄우기

Web Dev/Javascript 2011. 1. 14. 19:24 Posted by ditus

 var sw  = screen.availWidth ;
 var sh  = screen.availHeight ;

 px=(sw - width)/2 ;
 py=(sh - height)/2 ;

 var set  = 'top=' + py + ',left=' + px ;
 set += ',width=' + width + ',height=' + height + ',toolbar=0,resizable=1,status=0,scrollbars=1' ;


$conn = ocilogon("아이디","패스워드","호스트네임");
echo "Server Version=".OCIServerVersion($conn);  //접속확인
$query = "select * from 테이블";
$stmt = oci_parse($conn,$query);
ociexecute($stmt);

while($row = oci_fetch_array($stmt,OCI_BOTH))
{
echo $row[];
}

[ 중복된 값 뽑아오기]

select colum,count(*) from table group by colum having count(*) >1



[ DBMS_RANDOM ]

랜덤으로 문자열을 생성한다.

select dbms_random.value(1,1000) num from dual;
 -> 1~1000 사이의 랜던 숫자를 생성

select dbms_random.string('U', 20) str from dual;
-> 대문자 20자리 랜덤 문자열 생성

'U' : 대문자
'L' : 소문자
'A' : 대소문자
'X' : 숫자 + 대문자
'P' : 출력가능한 문자


 - 랜덤으로 로우 가져오기
select * from (select x.*,rownum rn from table x) a,(select trunc(dbms_random.value(1,로우갯수)) rn from dual) b where a.rn = b.rn