EDU 썸네일형 리스트형 chapter10. Oracle SQL 1234567891011121314151617181920212223242526272829303132333435363738394041424344실습1. select * from professor p, course c where p.pno=c.pno and p.pname='송강'; 2.select * from professor p, course c where p.pno=c.pno and cname like '%화학%'; 3.select * from professor p, course c where p.pno=c.pno and c.st_num=2; 4.select * from professor p, course c where p.pno=c.pno and p.section='화학'; 5.select * from.. 더보기 NFS 실습 환경 192.168.10.162 (NFS_Server)192.168.10.163 (NFS_client)192.168.10.164 (NFS_client) /etc/exports ( 192.168.10.162 ) 123456789/nfs_test 192.168.10.163(rw,anonuid=500,anongid=500)/nfs_test/a1 192.168.10.164(rw,no_root_squash)/nfs_test/a2 192.168.10.164(rw,all_squash)/nfs_test/a3 192.168.10.164(rw,no_all_squash)/nfs_test/a4 192.168.10.164(rw,all_squash,root_squash)/nfs_test/a5 192.168.10.164(rw.. 더보기 이전 1 다음