SQL28 데이터딕셔너리 2023. 7. 28. MYSQL(마리아DB) 다운 mria클릭 2023. 7. 5. SQL 만들기 권한주기 DCL(제어) : grant 이거 최신 이걸로하면됨 Microsoft Windows [Version 10.0.22000.2057] (c) Microsoft Corporation. All rights reserved. C:\Users\LG>sqlplus sys/java@localhost:1521 as sysdba SQL*Plus: Release 11.2.0.1.0 Production on Mon Aug 14 00:18:38 2023 Copyright (c) 1982, 2010, Oracle. All rights reserved. Connected to: Oracle Database 11g Express Edition Release 11.2.0.2.0 - 64bit Production SQL> cr.. 2023. 6. 26. [SQL] SQL 기본 문법 정리 DML(Data Manipulation Language)insertupdatedeleteselectDDL(Data Definition Language)createalterdroptruncaterenameDCL(Data Control Language)grantrevokeTCL(Transaction Control Language)commitrollbacksavepointCreate테이블 생성create table student (칼럼명 타입 조건(not null 등),칼럼명 타입 조건(not null 등),칼럼명 타입 조건(not null 등),PRIMARY KEY ~~ );Insert테이블에 데이터 삽입insert into student values(테이블에 맞는 데이터 양식);Update데이터 내용 수정.. 2023. 3. 27. 이전 1 2 3 4 5 다음