INSERT //오늘날짜 자동입력 (sysdate)insert into sale_plan values('1309094885','S12011','xxxxxx',5,25000000,'1/4','1234',sysdate); //기타 포맷형식으로 입력insert into sale_plan values('1309094885','S12011','xxxxxx',5,25000000,'1/4','1234',to_date('09-09-2013 12:14:11','mm-dd-yyyy hh24:mi:ss')); SELECT //포맷에 맞춰서 출력하기select to_char(writerdate, 'yyyy-mm-dd hh24:mi:ss') from sale_plan; 출처 http://blog.naver.com/xerosda..
프로젝트 명 : 자바(소켓통신)기반으로한 멀티 채팅 프로그램 개발프로젝트 기간 : 2주 프로그램 기능 : 대기실, 채팅방 구현, 귓속말, 닉네임바꾸기, 채팅방들어가기, 나가기, 로그아웃, 회원가입, 유저리스트, 방 리스트 표현 주요화면 소개 1. 서버화면 - 메시지를 표시해준다. 2. 서버 아이피 주소 입력화면 3. 로그인화면, 회원가입도 가능하다. 4. 로그인 성공 시 띄워지는 대기실 화면 5. 채팅방 접속화면 6. 대기실에서 메뉴버튼을 눌러 닉네임을 변경할 수 있다.
select initcap(ID) from student where deptno1 = 201; select initcap('Pretty girl') from dual; select name 이름, id, lower(ID) 소문자, upper(id) 대문자 from student where deptno1 =201; select name 이름, id, length(id) 글자수 from student where length(id) > 9; select name 이름, length(name), lengthb(name) from student where deptno1 = 201; select concat(name, position) from professor where deptno=101; select subs..