Oracle

    [Ajax] Oracle DB로부터 데이터를 가져와서 출력하기

    데이터를 불러오는 페이지 ajax.jsp webapp/ajax.jsp

    [SQL] char vs varchar vs varchar2

    char The char data type is used to store the character values. It is a fixed-length data type i.e once initialized we cannot change the size at execution time. Hence, it is also called a Static datatype. char는 고정된 길이만큼 사용하는 정적 데이터 타입 varchar The VarChar data type is used to store the character values. It is a variable-length data type i.e we can change the size of the character at the time of th..