CHANGE 명령어

 

*사용예

SQL>I

1 select name, studno

2 from student

3* where studno>20000 and name like '%동%'

 

SQL>1

1* select name, studno

 

SQL>c/name, studno/*

1 select*

SQL>I

1 select*

2 from student

3* where studno>20000 and name like '%동%'

 

SQL> c/and name like '%동%'

3* where studno>20000

 

SQL>I

1 select*

2 from student

3* where studno>20000

 

 

 

 

+ Recent posts