MySQ4e-01

Size: px
Start display at page:

Download "MySQ4e-01"

Transcription

1 MySQL P A R T 1 Chapter 01 Chapter 02 Chapter 03 Chapter 04 Chapter 05

2 01 Chapter MySQL (RDBMS, Relational Database Management System) MySQL SQL (SQL, Structured Query Language).,. MySQL.,. MySQL SQL. MySQL., 1.2 sampdb. 1.1 MySQL. MySQL., MySQL, ,,,,,,,,,.,,.,..,,..,

3 Chapter ,...,.,.,.... ( Publish or Perish, ).,...,... (,,,, ).,.., ( ).,.,.,.,.,

4 4 PART 1!.. MySQL?.,...,,..,, MySQL...,..., 6.,. SELECT last_name, first_name, last_visit FROM patient WHERE last_visit < DATE_SUB(CURDATE(),INTERVAL 6 MONTH);, (,.., ). (, )..,,.,... (,

5 Chapter 01 5, )....,,. MySQL...,..,.,,.....,,.,.,..., ( )...,.,.,.,...,

6 6 PART 1 MySQL., MySQL. MySQL? MySQL, MySQL.... ( )....,,.,,., ,.,,., ,.

7 Chapter ,..., ( )..,.. (,,,, ).,...,.,.,,.,., ( ) (MySQL ),.,.,,.,.,.,

8 8 PART 1,..,,..,.,.!.,.?,.,..,..,., MySQL. MySQL, MySQL. Perl DBI(, DataBase Interface) Perl MySQL. Perl,., Perl RTF(Rich Text Format), RTF. PHP. PHP,. MySQL. PHP Apache ( ),. MySQL,.,..

9 Chapter 01 9,.., MySQL., MySQL. ( ). (Perl, DBI, PHP, Apache),.. UNIX( BSD UNIX, Linux, Mac OS X UNIX ) Windows. Unix Windows ,. MySQL... A, B, C, D, F.,...,., MySQL.,,, ,.. MySQL.

10 10 PART 1,..,,.,., ,.,,...,., , MySQL (RDBMS, Relational Database Management System).. (RDBMS DB ) ( MS ),,,. (Relational R ) DBMS, ( )., DBMS. (,

11 Chapter , RDBMS.)...,., ([ 1.1] ). company,

12 12 PART 1,,,. ad,,, (hit). hit,.., company.,, hit.,., 7 14 Pickles,. 1. company (, Pickles ) (, 14 ). 2. ad,., ad, hit, ?.,,..,????, 3, -, (, C.J. Date E.F. Codd ) MySQL, SQL(Structured Query Language). SQL,. SQL,., SQL.,, MySQL., MySQL

13 Chapter 01 13, MySQL. CREATE TABLE company ( company_name CHAR(30), company_num INT, address CHAR(30), phone CHAR(12) ); SQL, SQL., CREATE TABLE MySQL MySQL /,. mysqld.,.. MySQL. ( Linux RPM, RPM,.). mysql,., mysqldump, mysqladmin.., MySQL. C. C, Perl, PHP, Python, Java, Ruby.. (GUI), /products/tools/. MySQL /.,.

14 14 PART 1 (concurrency control).,.,.,.. MySQL...,.?. MySQL,.. (Sally) ( ), (Phil)..,. mysqld /, MySQL, libmysqld, MySQL., (embedded). /.,.,. > TIP

15 Chapter MySQL! MySQL.,,,,.. RDBMS SQL, SQL MySQL SQL., MySQL /,,. mysql, SQL,,. mysql MySQL,. mysqlimport mysqlshow. sampdb,., sampdb MySQL.. MySQL,. MySQL ( sampdb sampdb ).. A., sampdb..

16 16 PART 1 MySQL MySQL bin. A PATH ,. MySQL. MySQL.. MySQL MySQL..,.,. MySQL, A. (ISP, Internet Service Provider), MySQL. ISP MySQL, MySQL. MySQL, MySQL ( MySQL, ).,. MySQL,. MySQL root CREATE USER GRANT MySQL. MySQL,, sampadm secret ( ). % mysql -p -u root Enter password: ****** mysql> CREATE USER 'sampadm'@'localhost' IDENTIFIED BY 'secret'; Query OK, 0 rows affected (0.04 sec) mysql> GRANT ALL ON sampdb.* TO 'sampadm'@'localhost'; Query OK, 0 rows affected (0.01 sec) mysql -p mysql root MySQL. ******

17 Chapter MySQL root., password:., root. CREATE USER GRANT, MySQL, 12 MySQL. GRANT MySQL. sampadm secret sampdb. GRANT.. MySQL, localhost., asp.snake.net GRANT. Mysql> CREATE USER IDENTIFIED BY 'secret' ; mysql> GRANT ALL ON sampdb.* TO 'sampadm'@'asp.snake.net' ; MySQL., sampadm, secret, sampdb MySQL,, , (UNIX Windows DOS ) mysql.. % mysql options %. UNIX. $. Windows C:\>. mysql options,. % mysql -h host_name -p -u user_name mysql,.. -h host_name ( : --host=host_name). MySQL mysql,.

18 18 PART 1 -u user_name ( : --user=user_name) MySQL. UNIX MySQL,. mysql MySQL. Windows ODBC,. -u USER., sampadm set. C:\> set USER=sampadm USER,. -p ( : --password) mysql MySQL Enter password:.,. % mysql -h host_name -p -u user_name Enter password: Enter password:, ( ). MySQL UNIX Windows. -p, mysql. ( : --password=your_pass) -pyour_pass.,.,., -p. -h -u, h -u. MySQL sampadm secret. MySQL, -h mysql. % mysql -p -u sampadm Enter password: ******, mysql Enter password:, (secret ****** ).

19 Chapter 01 19, mysql mysql>.. % mysql -p -u sampadm Enter password: ****** Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is server version: log Type 'help;' or '\h' for help. Type '\c' to clear the buffer. mysql>, -h. cobra.snake.net,. % mysql -h cobra.snake.net -p -u sampadm mysql, -h, -u, -p,. Mysqlshow MySQL. quit. mysql> quit Bye \q (UNIX ) Ctrl-D. MySQL (, ).,,., ( ) MySQL. mysql. 1.5 mysql mysql. mysql,. ( ; ). mysql.,

20 20 PART 1 mysql. mysql, mysql.. mysql> SELECT NOW(); NOW() :51: row in set (0.00 sec) SQL \g( go ). mysql> SELECT NOW()\g NOW() :51: row in set (0.00 sec) \G,. mysql> SELECT NOW(), USER(), VERSION()\G *************************** 1. row *************************** NOW(): :51:34 USER(): sampadm@localhost VERSION(): log 1 row in set (0.03 sec), \G \G. mysql SQL.,. mysql,. mysql> SELECT NOW(), -> USER(), -> VERSION() -> ; NOW() USER() VERSION() :51:37 sampadm@localhost log

21 Chapter 01 21, mysql> ->. mysql,., mysql.,, MySQL, mysql. (mysql. F MySQL )., \c.,. mysql> SELECT NOW(), -> VERSION(), -> \c mysql> mysql mysql>.,. mysql> SELECT NOW();SELECT USER();SELECT VERSION(); NOW() :52: USER() sampadm@localhost VERSION() log ,,,.. SELECT USER(); select user(); SeLeCt UsEr();

22 22 PART 1, SQL,,,.,.,. mysql.., myfile.sql,. (.) % mysql < myfile.sql. SQL.sql. mysql sampdb. INSERT mysql.. mysql>,.,. (. mysql, ) sampdb,,,.. 1. ( ) ,,,..,..,,,

23 Chapter 01 23,., mysql CREATE DATABASE. mysql> CREATE DATABASE sampdb; sampdb., ( )?..,. mysql> SELECT DATABASE(); DATABASE() NULL NULL. sampdb, USE. mysql> USE sampdb; mysql> SELECT DATABASE(); DATABASE() sampdb mysql.,. % mysql sampdb,.,., sampadm sampdb. % mysql -p -u sampadm sampdb MySQL,. % mysql -h cobra.snake.net -p -u sampadm sampdb, mysql sampdb. mysql USE sampdb mysql>.

24 24 PART sampdb.,,., - (E-R),.,.,,,....,.. ( )..,. president,...,, first name last name.,. first name, last name. last name, first name.., last name,. last name., president last name first name. first name middle name. middle name,. Bush, George W.

25 Chapter George W. Bush first name middle name,.. ( Jimmy Carter) Jr..?, James E. Carter, Jr., Carter, James E., Jr.. Jr. first name last name,.,.,.,.,.,.,.,... MySQL NULL,. member president., member. president., last_name, first_name, suffix.,. League ID,, ( MySQL, League., member )..,,. ( 1, 2, 3, 5 ),.,., NULL

26 26 PART 1,..... ( ). street, city, state, zip..,,.,., Zip, (province).,.,... ( ID.,.). CREATE TABLE,. CREATE TABLE tbl_name (column_specs); tbl_name. column_specs,.. 5. president CREATE TABLE. CREATE TABLE president ( last_name VARCHAR(15) NOT NULL, first_name VARCHAR(15) NOT NULL, suffix VARCHAR(5) NULL, city VARCHAR(20) NOT NULL, state VARCHAR(2) NOT NULL, birth DATE NOT NULL, death DATE NULL );

27 Chapter sampdb create_president.sql., sampdb mysql. % mysql sampdb, CREATE TABLE, mysql.,.. president, sampdb create _presidnet.sql. sampdb,. sampdb. % mysql sampdb < create_president.sql mysql, (,, ). CREATE TABLE, ( ),. president, VARCHAR DATE. VARCHAR(n), n. n. state VARCHAR(2),.. DATE..,. MySQL CCYY-MM-DD, CC, YY, MM, DD,,,. ANSI SQL ( ISO 8601 )., July 18, 2005 MySQL , president NULL( ) NOT NULL( ). NOT NULL. NULL, suffix( ) death( ). member, CREATE TABLE. CREATE TABLE member (

28 28 PART 1 ); member_id INT UNSIGNED NOT NULL AUTO_INCREMENT, PRIMARY KEY (member_id), last_name VARCHAR(20) NOT NULL, first_name VARCHAR(20) NOT NULL, suffix VARCHAR(5) NULL, expiration DATE NULL, VARCHAR(100) NULL, street VARCHAR(50) NULL, city VARCHAR(50) NULL, state VARCHAR(2) NULL, zip VARCHAR(10) NULL, phone VARCHAR(20) NULL, interests VARCHAR(255) NULL mysql sampdb. Sampdb member CREATE TABLE create_member.sql.. % mysql sampdb < create_member.sql, member. member_id expiration. member_id. MySQL, AUTO_INCREMENT., member_id. INT ( ). UNSIGNED. NOT NULL (ID ). AUTO_INCREMENT MySQL.. AUTO_INCREMENT., member member_id ( NULL), MySQL. NULL. MySQL AUTO_INCREMENT ID. PRIMARY KEY member_id (unique).

29 Chapter ID, ID., MySQL AUTO_INCREMENT (unique),. ( PRIMARY KEY NOT NULL. NOT NULL member_id MySQL.) AUTO_INCREMENT PRIMARY KEY, ID.. (AUTO_INCREMENT, 3 ). expiration DATE. NULL. NULL., expiration NULL,. MySQL,. mysql president. mysql> DESCRIBE president; Field Type Null Key Default Extra last_name varchar(15) NO first_name varchar(15) NO suffix varchar(5) YES NULL city varchar(20) NO state varchar(2) NO birth date NO death date YES NULL DESCRIBE member, mysql member. DESCRIBE,. MySQL. INSERT LOAD DATA. DESCRIBE. DESC EXPLAIN SHOW.. DESCRIBE president; DESC president; EXPLAIN president; SHOW COLUMNS FROM president; SHOW FIELDS FROM president;

30 30 PART 1., SHOW LIKE. mysql> SHOW COLUMNS FROM president LIKE %name ; Field Type Null Key Default Extra last_name varchar(15) NO first_name varchar(15) NO %, SHOW FULL COLUMN SHOW COLUMN.,. MySQL SHOW. SHOW TABLES, sampdb,. mysql> SHOW TABLES; Tables_in_sampdb member president SHOW DATABASES. mysql> SHOW DATABASES; Database information_schema menagerie mysql sampdb test , information_schema sampdb.information _schema., sampdb. test MySQL. mysql MySQL. mysqlshow SHOW

31 Chapter Mysqlshow username, password, hostname. mysql., mysqlshow. % mysqlshow Databases information_schema menagerie mysql sampdb test , mysqlshow. % mysqlshow sampdb Database: sampdb Tables member president mysqlshow, SHOW COLUMNS.,. [ 1.2]... ID ( ).

32 32 PART , 6, 16, score.?.,,,. [ 1.3] (MySQL CCYY-MM-DD ).,., [ 1.3],.. ( ),., [ 1.4] T Q., Q, 10 1 T..,.?. score,. grade_event ( ).,. score

33 Chapter grade_event. [ 1.5] 9 23 score. grade_event,..,. score,.,.,,,???.... ([ 1.2] ).?., ( ).

34 34 PART 1. score.? T Q,.. grade_event.,,....,.,.,. [ 1.5] grade_event score grade_event.,., score grade_event, score grade_event..?.,.,.,.,,...?,.,. 1. grade_event., ID, event_id (, [ 1.2]

35 Chapter ID. event ID, ). 2. score, event ID. [ 1.6]., event ID event, grade_event. grade_event event ID.,, ( )., [ 1.6]. score. [ 1.4], score. [ 1.6] score. event ID score?...,,. :? MySQL.,,., MySQL,.

36 36 PART 1.,.,.., (, ),,.,...,.., score, event ID.. event ID grade_event.,.. event ID. MySQL.,,., event ID MySQL., MySQL SELECT score.name, grade_event.date, score.score, grade_event.category FROM score, INNER JOIN grade_event ON score.event_id = grade_event.event_id WHERE grade_event.date = ' '?,,, score grade_event ( ) name date score type Billy Q

37 Chapter Missy Q Johnny Q Jenny Q ?. [ 1.4]. event ID., MySQL.,.,,.,.?,., SQL.,. 1.5 mysql..,.. score, student ID ( Name ID )., student, name student_id ([ 1.7]).?. ID ( event ID ).,.

38 38 PART 1 SELECT student.name, grade_event.date, score.score, grade_event.category FROM grade_event INNER JOIN score INNER JOIN student ON grade_event.event_id = score.event_id AND score.student_id = student.student_id WHERE grade_event.date = ' ';,..,,.. [ 1.7] student..,.... ID ([ 1.8] ).. MySQL.,. student CREATE TABLE. CREATE TABLE student ( name VARCHAR(20) NOT NULL, sex ENUM ('F','M') NOT NULL, student_id INT UNSIGNED NOT NULL AUTO_INCREMENT, PRIMARY KEY (student_id) ) ENGINE=InnoDB; CREATE TABEL..

39 Chapter mysql. % mysql sampdb < create_student.sql CREATE TABLE student, name, sex, student_id. name 20. name. first name last name. (?. ). sex. ENUM(, enumeration),., F M. ENUM. CHAR(1), ENUM., DESCRIBE. ENUM, MySQL. mysql> DESCRIBE student sex ; Field Type Null Key Default Extra sex enum( F, M ) NO ENUM. ENUM(female, male ). student_id ID., ID. AUTO_INCREMENT ID, member member_id., ID, student_id AUTO_INCREMENT. NULL ID PRIMARY KEY. CREATE TABLE ENGINE., MySQL.. MySQL, ENGINE, MySQL MyISAM.

40 40 PART 1 ISAM, MySQL., (president member) ENGINE MyISAM. (.), InnoDB. InnoDB. MySQL. Score. student ID grade event ID student, grade_event score., absence. student id student absence..,.. grade_event. CREATE TABLE grade_event ( date DATE NOT NULL, category ENUM('T','Q') NOT NULL, event_id INT UNSIGNED NOT NULL AUTO_INCREMENT, PRIMARY KEY (event_id) ) ENGINE = InnoDB;, mysql CREATE TABLE. % mysql sampdb < create_grade_event.sql Date MySQL DATE, CCYY-MM-DD ( ). category. student sex, type. T Q, (test) (quiz). event_id PRIMARY KEY AUTO_INCREMENT, student student_id. AUTO_INCREMENT, event ID. student student_id, ID ID. NOT NULL,.

41 Chapter score. CREATE TABLE score ( student_id INT UNSIGNED NOT NULL, event_id INT UNSIGNED NOT NULL, score INT NOT NULL, PRIMARY KEY (event_id, student_id), INDEX (student_id), FOREIGN KEY (event_id) REFERENCES grade_event (event_id), FOREIGN KEY (student_id) REFERENCES student (student_id) ) ENGINE = InnoDB; FOREIGN KEY. mysql. % mysql sampdb < create_score.sql student_id event_id INT( ). student grade_event,. student_id event_id. PRIMARY KEY.. student_id event_id. score. event_id ( ), student_id ( ). ID FOREIGN KEY. FOREIGN KEY REFERENCE score. event_id grade_event event_id., score student_id student student_id. PRIMARY KEY score. FOREIGN KEY grade_event student ID., student_id? FOREIGN KEY,. event_id FOREIGN KEY, PRIMARY KEY. student_id FOREIGN KEY, student_id PRIMARY KEY., student_id. InnoDB,

42 42 PART 1 ( ).. absence. CREATE TABLE absence ( student_id INT UNSIGNED NOT NULL, date DATE NOT NULL, PRIMARY KEY (student_id, date), PRIMARY KEY (student_id) REFERENCE student (student_id) ) ENGINE = InnoDB; mysql. % mysql sampdb < create_absence.sql student_id date NOT NULL.,.,! absence, student_id student student_id.. ID.,. score grade_event, student score., absence student, student absence.,. score grade_event, score, absence student. NOTE

43 Chapter ,..,, 1.4.9, tbl_name. SELECT * FROM tbl_name;,. mysql> SELECT * FROM student; Empty set (0.00 sec), mysql,.. INSERT,, mysql INSERT LOAD DATA mysqlimport sampdb,,.,,. (,.) INSERT. INSERT SQL. INSERT.. INSERT INTO tbl_name VALUES(value1,value2,...); : mysql> INSERT INTO student VALUES('Kyle','M',NULL);

44 44 PART 1 mysql> INSERT INTO event VALUES(' ','Q',NULL); VALUES, ( CREATE TABLE )., DESCRIBE tbl_name. MySQL,. student event AUTO_INCREMENT NULL. AUTO_INCREMENT, MySQL. MySQL INSERT. INSERT INTO tbl_name VALUES(...),(...),... ; : mysql> INSERT INTO student VALUES('Avery','F',NULL),('Nathan','M',NULL); INSERT,... mysql> INSERT INTO student VALUES('Avery','F',NULL,'Nathan','M',NULL); ERROR 1136 (21S01): Column count doesn t match value count at row 1. INSERT INTO tbl_name (col_name1,col_name2,...) VALUES(value1,value2,...); : mysql> INSERT INTO member (last_name,first_name) VALUES('Stein','Waldo'); MySQL INSERT.,. mysql> INSERT INTO student (name,sex) VALUES('Abby','F'),('Joseph','M');., member_id student_id, MySQL NULL (member_id student_id AUTO_INCREMENT, NULL, ). SET. value( ) col_name=value

45 Chapter INSERT INTO tbl_name SET col_name1=value1, col_name2=value2,... ; : mysql> INSERT INTO member SET last_name='stein',first_name='waldo' SET. INSERT. INSERT, score, absence. grade_event student ID. mysql> INSERT INTO score (event_id,student_id,score) VALUES(9999,9999,0); ERROR 1452 (23000): Cannot add or update a child row: a foreign key constraint fails (`sampdb`.`score`, CONSTRAINT `score_ibfk_1` FOREIGN KEY (`event_id`) REFERENCES `grade_event` (`event_id`)) mysql> INSERT INTO absence SET student_id=9999, date=' '; ERROR 1452 (23000): Cannot add or update a child row: a foreign key constraint fails (`sampdb`.`absence`, CONSTRAINT `absence_ibfk_1` FOREIGN KEY (`student_id`) REFERENCES `student` (`student_id`)).., sampdb presidnet INSERT insert _president.sql.. % mysql sampdb < insert_president.sql mysql, SOURCE. mysql> SOURCE insert_president.sql; INSERT, LOAD DATA mysqlimport. LOAD DATA. mysql. mysql> LOAD DATA LOCAL INFILE 'member.txt' INTO TABLE member; member.txt, member. (member.txt sampdb.), LOAD DATA ( )..

46 46 PART 1. E SQL LOAD DATA. LOAD DATA LOCAL. LOCAL,, MySQL.. LOAD DATA LOCAL, LOCAL. ERROR 1148 (42000): The used command is not allowed with this MySQL version, --local-infile mysql.,. % mysql --local-infile sampdb mysql> LOAD DATA LOCAL INFILE 'member.txt' INTO TABLE member;, LOCAL. 12. mysqlimport. mysqlimport, LOAD DATA. % mysqlimport --local sampdb member.txt mysql,., mysqlimport LOAD DATA member.txt member. mysqlimport (. )., mysqlimport member.txt president.txt member president. mysqlimport., member1.txt member2.txt member, mysqlimport member1 member2. member, member.1.txt member.2.txt member.txt1 member.txt , sampdb. sampdb mysql,. % mysql sampdb

47 Chapter mysql> source create_member.sql; mysql> source create_president.sql; mysql> source insert_member.sql; mysql> source insert_president.sql; mysql> DROP TABLE IF EXISTS absence, score, grade_event, student; mysql> source create_student.sql; mysql> source create_grade_event.sql; mysql> source create_score.sql; mysql> source create_absence.sql; mysql> source insert_student.sql; mysql> source insert_grade_event.sql; mysql> source insert_score.sql; mysql> source insert_absence.sql; ( ), UNIX. % sh init_all_tables.sh sampdb Windows. C:\> init_all_tables.bat sampdb ,. SELECT,.. SELECT * FROM president;. SELECT birth FROM president WHERE last_name = 'Eisenhower'; SELECT ( ),., SELECT., (, ). SELECT. SELECT what to retrieve FROM table or tables WHERE conditions that data must satisfy; SELECT,. (FROM WHERE), GROUP BY, ORDER BY,

48 48 PART 1 LIMIT. SQL. SELECT. FROM,.,., FROM. mysql> SELECT 2+2, 'Hello, world', VERSION(); Hello, world VERSION() Hello, world log FROM,. SELECT *,. student. mysql> SELECT * FROM student; name sex student_id Megan F 1 Joseph M 2 Kyle M 3 Katie F 4... MySQL. DESCRIBE student ( )..,. mysql> SELECT name FROM student; name Megan Joseph Kyle Katie.... SELECT * FROM student,.

49 Chapter mysql> SELECT name, sex, student_id FROM student; name sex student_id Megan F 1 Joseph M 2 Kyle M 3 Katie F SELECT name, student_id FROM student; SELECT student_id, name FROM student;,,. MySQL. join MySQL,. SELECT name, student_id FROM student; SELECT NAME, STUDENT_ID FROM student; SELECT name, student_id FROM student;,.. Windows, Windows. UNIX UNIX. HFS+ UFS Mac OS X, HFS+, UFS. MySQL, SELECT, WHERE.,.,. mysql> SELECT * FROM score WHERE score > 95; student_id event_id score

50 50 PART mysql> SELECT last_name, first_name FROM president -> WHERE last_name='roosevelt'; last_name first_name Roosevelt Theodore Roosevelt Franklin D mysql> SELECT last_name, first_name FROM president -> WHERE last_name='roosevelt'; last_name first_name Roosevelt Theodore Roosevelt Franklin D mysql> SELECT last_name, first_name, birth FROM president -> WHERE birth < ' '; last_name first_name birth Washington George Adams John Jefferson Thomas mysql> SELECT last_name, first_name, birth, state FROM president -> WHERE birth < ' ' AND (state='va' OR state='ma'); last_name first_name birth state Washington George VA Adams John MA Jefferson Thomas VA

51 Chapter WHERE ([ 1.1]), ([ 1.2]), ([ 1.3])..,,. MySQL,. C., ~ (and) AND.. ~ (and).,. mysql> SELECT last_name, first_name, state FROM president -> WHERE state='va' AND state='ma'; Empty set (0.36 sec)

52 52 PART 1,.?,. ~ (and), SQL OR. mysql> SELECT last_name, first_name, state FROM president -> WHERE state='va' OR state='ma'; last_name first_name state Washington George VA Adams John MA Jefferson Thomas VA Madison James VA Monroe James VA Adams John Quincy MA Harrison William H. VA Tyler John VA Taylor Zachary VA Wilson Woodrow VA Kennedy John F. MA Bush George H.W. MA SQL,. SQL,.,,. IN( ). IN( ). SELECT last_name, first_name, state FROM president WHERE state IN( VA, MA );

53 Chapter IN( ). NULL., NULL. NULL. mysql> SELECT NULL < 0, NULL = 0, NULL <> 0, NULL > 0; NULL < 0 NULL = 0 NULL <> 0 NULL > NULL NULL NULL NULL ,, NULL. mysql> SELECT NULL = NULL, NULL <> NULL; NULL = NULL NULL <> NULL NULL NULL NULL., =, <>,!= IS NULL IS NOT NULL., president NULL. mysql> SELECT last_name, first_name FROM president WHERE death IS NULL; last_name first_name Carter James E. Bush George H.W. Clinton William J. Bush George W NULL IS NOT NULL.. mysql> SELECT last_name, first_name, suffix -> FROM president WHERE suffix IS NOT NULL; last_name first_name suffix

54 54 PART 1 Carter James E. Jr MySQL <=> NULL NULL true.. SELECT last_name, first_name FROM president WHERE death <=> NULL; SELECT last_name, first_name, suffix FROM president WHERE NOT (suffix <=> NULL); SELECT * FROM tbl_name, MySQL.,..,,. (, MySQL.).,,., ORDER BY. last name. mysql> SELECT last_name, first_name FROM president -> ORDER BY last_name; last_name first_name Adams John Adams John Quincy Arthur Chester A. Buchanan James... ORDER BY. ASC DESC ORDER BY., ( ) DESC. mysql> SELECT last_name, first_name FROM president -> ORDER BY last_name DESC; last_name first_name Wilson Woodrow

55 Chapter Washington George Van Buren Martin Tyler John...,. president, (state), (state) last name. mysql> SELECT last_name, first_name, state FROM president -> ORDER BY state DESC, last_name ASC; last_name first_name state Arthur Chester A. VT Coolidge Calvin VT Harrison William H. VA Jefferson Thomas VA Madison James VA Monroe James VA Taylor Zachary VA Tyler John VA Washington George VA Wilson Woodrow VA Eisenhower Dwight D. TX Johnson Lyndon B. TX... NULL. NULL, NULL NULL., ( NULL ).,. mysql> SELECT last_name, first_name, death FROM president -> ORDER BY IF(death IS NULL,0,1), death DESC; last_name first_name death Clinton William J. NULL Bush George H.W. NULL Carter James E. NULL Bush George W. NULL Ford Gerald R Reagan Ronald W Nixon Richard M Johnson Lyndon B

56 56 PART 1... Jefferson Thomas Adams John Washington George IF()., IF() NULL 0 NULL 1. NULL NULL., LIMIT, ORDER BY. MySQL n. 5. mysql> SELECT last_name, first_name, birth FROM president -> ORDER BY birth LIMIT 5; last_name first_name birth Washington George Adams John Jefferson Thomas Madison James Monroe James , ORDER BY birth DESC, 5. mysql> SELECT last_name, first_name, birth FROM president -> ORDER BY birth DESC LIMIT 5; last_name first_name birth Clinton William J Bush George W Carter James E Bush George H.W Kennedy John F LIMIT,.,.,

57 Chapter mysql> SELECT last_name, first_name, birth FROM president -> ORDER BY birth DESC LIMIT 10, 5; last_name first_name birth Truman Harry S Roosevelt Franklin D Hoover Herbert C Coolidge Calvin Harding Warren G president, ORDER BY RAND( ) LIMIT. mysql> SELECT last_name, first_name FROM president -> ORDER BY RAND() LIMIT 1; last_name first_name Johnson Lyndon B mysql> SELECT last_name, first_name FROM president -> ORDER BY RAND() LIMIT 3; last_name first_name Harding Warren G. Bush George H.W. Jefferson Thomas MySQL.. ( ). mysql> SELECT 17, FORMAT(SQRT(25+13),3); FORMAT(SQRT(25+13),3)

58 58 PART 1. mysql> SELECT CONCAT(first_name,,last_name),CONCAT(city,,,state) -> FROM president; CONCAT(first_name,,last_name) CONCAT(city,,,state) George Washington Wakefield, VA John Adams Braintree, MA Thomas Jefferson Albemarle County, VA James Madison Port Conway, VA... first name last name,.,.,., AS name. (column alias).,. mysql> SELECT CONCAT(first_name,' ',last_name) AS Name, -> CONCAT(city,', ',state) AS Birthplace -> FROM president; Name Birthplace George Washington Wakefield, VA John Adams Braintree, MA Thomas Jefferson Albemarle County, VA James Madison Port Conway, VA...,. mysql> SELECT CONCAT(first_name,' ',last_name) AS 'President Name', -> CONCAT(city,', ',state) AS 'Place of Birth' -> FROM president; President Name Place of Birth George Washington Wakefield, VA John Adams Braintree, MA Thomas Jefferson Albemarle County, VA James Madison Port Conway, VA...

59 Chapter AS. mysql> SELECT 1, 2 AS two, 3 three; two three AS.,., first_name last_name. mysql> SELECT first_name last_name FROM president; last_name George John Thomas James...., first_column, last_name.,. MySQL MySQL , ( ),, ( )., DATE.

60 60 PART 1 mysql> SELECT * FROM event WHERE date = ' '; date category event_id T mysql> SELECT last_name, first_name, death -> FROM president -> WHERE death >= ' ' AND death < ' '; last_name first_name death Truman Harry S Johnson Lyndon B , YEAR(), MONTH(), DAYOFMONTH()., 3 (3 ). mysql> SELECT last_name, first_name, birth -> FROM president WHERE MONTH(birth) = 3; last_name first_name birth Madison James Jackson Andrew Tyler John Cleveland Grover mysql> SELECT last_name, first_name, birth -> FROM president WHERE MONTHNAME(birth) = 'March'; last_name first_name birth Madison James Jackson Andrew Tyler John Cleveland Grover , MONTH( ) DAYOFMONTH( ). mysql> SELECT last_name, first_name, birth -> FROM president WHERE MONTH(birth) = 3 AND DAYOFMONTH(birth) = 29;

61 Chapter last_name first_name birth Tyler John /.,,., CURDATE( ),. SELECT last_name, first_name, birth FROM president WHERE MONTH(birth) = MONTH(CURDATE()) AND DAYOFMONTH(birth) = DAYOFMONTH(CURDATE());,.,,. TIMESTAMPDIFF(). mysql> SELECT last_name, first_name, birth, death, -> TIMESTAMPDIFF(YEAR, birth, death) AS age -> FROM president WHERE death IS NOT NULL -> ORDER BY age DESC LIMIT 5; last_name first_name birth death age Reagan Ronald W Ford Gerald R Adams John Hoover Herbert C Truman Harry S TO_DAYS()..,.,,. 60. SELECT last_name, first_name, expiration FROM member WHERE (TO_DAYS(expiration) - TO_DAYS(CURDATE())) < 60; TIMESTAMPDIFF(). SELECT last_name, first_name, expiration FROM member WHERE TIMESTAMPDIFF(DAY, CURDATE(), expiration) < 60;, DATE_ADD() DATE_SUB().

62 62 PART 1,. mysql> SELECT DATE_ADD(' ', INTERVAL 10 YEAR); DATE_ADD(' ', INTERVAL 10 YEAR) mysql> SELECT DATE_SUB(' ', INTERVAL 10 YEAR); DATE_SUB(' ', INTERVAL 10 YEAR) ,.,. mysql> SELECT last_name, first_name, death -> FROM president -> WHERE death >= ' ' -> AND death < DATE_ADD(' ', INTERVAL 10 YEAR); last_name first_name death Truman Harry S Johnson Lyndon B DATE_ADD( ). SELECT last_name, first_name, expiration FROM member WHERE expiration < DATE_ADD(CURDATE(), INTERVAL 60 DAY); expiration 5.. SELECT last_name, first_name, last_visit FROM patient WHERE last_visit < DATE_SUB(CURDATE(),INTERVAL 6 MONTH);.? MySQL,. (LIKE NOT LIKE),

63 Chapter _, % ( ). W w last name. mysql> SELECT last_name, first_name FROM president -> WHERE last_name LIKE 'W%'; last_name first_name Washington George Wilson Woodrow LIKE,. mysql> SELECT last_name, first_name FROM president -> WHERE last_name = 'W%'; Empty set (0.00 sec) W% w%. last_name W w. mysql> SELECT last_name, first_name FROM president -> WHERE last_name LIKE '%W%'; last_name first_name Washington George Wilson Woodrow Eisenhower Dwight D last name. mysql> SELECT last_name, first_name FROM president -> WHERE last_name LIKE ' '; last_name first_name Polk James K. Taft William H. Ford Gerald R Bush George H.W. Bush George W

64 64 PART 1 MySQL REXEXP, C MySQL.,. Andrew Jackson.,,. mysql> := birth FROM president -> WHERE last_name = 'Jackson' AND first_name = 'Andrew'; := birth mysql> SELECT last_name, first_name, birth FROM president -> WHERE birth ORDER BY birth; last_name first_name birth Washington George Adams John Jefferson Thomas Madison James Monroe James := value. Andrew ( SELECT. ).,. (join),.. SET, = :=. mysql> = CURDATE(); mysql> := DATE_SUB(@today(), INTERVAL 7 DAY);

65 Chapter MySQL.,, MySQL MySQL.,. DISTINCT.,,. mysql> SELECT DISTINCT state FROM president ORDER BY state; state AR CA CT GA IA IL KY MA MO NC NE NH NJ NY OH PA SC TX VA VT , COUNT( ). COUNT(*),. WHERE, COUNT(*). member.

66 66 PART 1 mysql> SELECT COUNT(*) FROM member; COUNT(*) WHERE, COUNT(*).. mysql> SELECT COUNT(*) FROM grade_event WHERE type = 'Q'; COUNT(*) COUNT(*)., COUNT(col_name) NULL.. mysql> SELECT COUNT(*),COUNT( ), COUNT(expiration) FROM member; COUNT(*) COUNT( ) COUNT(expiration) member 102, (expiration NULL, NULL 6 ). COUNT() DISTINCT NULL., (state),. mysql> SELECT COUNT(DISTINCT state) FROM president; COUNT(DISTINCT state) ,. mysql> SELECT COUNT(*) FROM student; COUNT(*)

67 Chapter ,? (sex). mysql> SELECT COUNT(*) FROM student WHERE sex='f'; COUNT(*) mysql> SELECT COUNT(*) FROM student WHERE sex='m'; COUNT(*) ,. (state). (SELECT DISTINCT state FROM president), SELECT COUNT(*).., MySQL,.,. mysql> SELECT sex, COUNT(*) FROM student GROUP BY sex; sex COUNT(*) F 15 M mysql> SELECT state, COUNT(*) FROM president GROUP BY state; state COUNT(*) AR 1 CA 1 CT 1 GA 1

68 68 PART 1 IA 1 IL 1 KY 1 MA 4 MO 1 NC 2 NE 1 NH 1 NJ 1 NY 4 OH 7 PA 1 SC 1 TX 2 VA 8 VT GROUP BY. MySQL.. GROUP BY COUNT(*),..,.,..., MySQL GROUP BY, ORDER BY., (state), ORDER BY. mysql> SELECT state, COUNT(*) AS count FROM president -> GROUP BY state ORDER BY count DESC; state count VA 8 OH 7 MA 4 NY 4 NC 2 VT 2 TX 2

69 Chapter SC 1 NH 1 PA 1 KY 1 NJ 1 IA 1 MO 1 CA 1 NE 1 GA 1 IL 1 AR 1 CT , ORDER BY.,,., COUNT(*) count. ORDER BY.. SELECT state, COUNT(*) FROM president GROUP BY state ORDER BY 2 DESC; MySQL..,,, ORDER BY,. ORDER BY SQL,.. GROUP BY, ORDER BY.. mysql> SELECT MONTH(birth) AS Month, MONTHNAME(birth) AS Name, -> COUNT(*) AS count -> FROM president GROUP BY Name ORDER BY Month; Month Name count January 4 2 February 4

70 70 PART 1 3 March 4 4 April 4 5 May 2 6 June 1 7 July 4 8 August 4 9 September 1 10 October 6 11 November 5 12 December COUNT() ORDER BY LIMIT president. mysql> SELECT state, COUNT(*) AS count FROM president -> GROUP BY state ORDER BY count DESC LIMIT 4; state count VA 8 OH 7 MA 4 NY LIMIT COUNT() HAVING. HAVING WHERE. COUNT() WHERE. 2. mysql> SELECT state, COUNT(*) AS count FROM president -> GROUP BY state HAVING count > 1 ORDER BY count DESC; state count VA 8 OH 7 MA 4 NY 4 NC 2 VT 2 TX ,. HAVING count =1.

71 Chapter COUNT(). MIN(), MAX(), SUM(), AVG(),,,... ( ). mysql> SELECT -> event_id, -> MIN(score) AS minimum, -> MAX(score) AS maximum, -> MAX(score)-MIN(score)+1 AS span, -> SUM(score) AS total, -> AVG(score) AS average, -> COUNT(score) AS count -> FROM score -> GROUP BY event_id; event_id minimum maximum span total average count , event_id., grade_event , WITH ROLLUP... WITH ROLLUP. mysql> SELECT sex, COUNT(*) FROM student GROUP BY sex WITH ROLLUP; sex COUNT(*) F 15 M 16 NULL NULL.

72 72 PART 1 WITH ROLLUP.,. mysql> SELECT -> event_id, -> MIN(score) AS minimum, -> MAX(score) AS maximum, -> MAX(score)-MIN(score)+1 AS span, -> SUM(score) AS total, -> AVG(score) AS average, -> COUNT(score) AS count -> FROM score -> GROUP BY event_id -> WITH ROLLUP; event_id minimum maximum span total average count NULL WITH ROLLUP.. GROUP BY, WITH ROLLUP.,.. mysql> SELECT -> state AS State, -> AVG(TIMESTAMPDIFF(YEAR, birth, death)) AS Age -> FROM president WHERE death IS NOT NULL -> GROUP BY state ORDER BY Age; State Age KY VT

73 Chapter NC OH NH NY NJ TX MA VA PA SC CA MO IA NE IL ,, ( ),.,.?.,..,, ,?. MySQL., DBMS.., (join).. SELECT SELECT

74 74 PART 1. SELECT ,.. 3,.. mysql> SELECT student_id, date, score, category -> FROM grade_event INNER JOIN score -> ON grade_event.event_id = score.event_id -> WHERE date = ; student_id date score category Q Q Q Q Q... ( ) grade_event, event ID event ID (score). grade_event score, ID,,,.. FROM. FROM grade_event INNER JOIN score on grade_event score event_id. ON grade_event.event_id = score.event_id MySQL tbl_name.col_name grade_event.event_id event_id. event_id, event_id. (date, score, category),. (join), ( )..

75 Chapter SELECT score.student_id, grade_event.date, score.score, grade_event.category FROM grade_event INNER JOIN score ON grade_event.event_id = score.event_id WHERE grade_event.date = ' '; grade_event ID, ID score. student_id,. student student ID,. score student student_id,.. mysql> SELECT -> student.name, grade_event.date, score.score, grade_event.category -> FROM grade_event INNER JOIN score INNER JOIN student -> ON grade_event.event_id = score.event_id -> AND score.student_id = student.student_id -> WHERE grade_event.date = ' '; name date score category Megan Q Joseph Q Kyle Q Abby Q Nathan Q.... student FROM, grade_event score student. student_id, (student_id) (score.student_id). score student student_id, score.student_id student.student_id. student ID score student ON. ON... score.student_id = student.student_id student ID (. student_id ).

76 76 PART 1,. student ID event ID. MySQL ID,.. absense student ID absence. (ID ), student_id absence student (join). ID. mysql> SELECT student.student_id, student.name, -> COUNT(absence.date) AS absences -> FROM student INNER JOIN absence -> ON student.student_id = absence.student_id -> GROUP BY student.student_id; student_id name absences Kyle 1 5 Abby 1 10 Peter 2 17 Will 1 20 Avery NOTE.,?.... (join) LEFT JOIN. MySQL LEFT JOIN ( LEFT JOIN ). student, absense. FROM LEFT JOIN ( ), ON.

77 Chapter mysql> SELECT student.student_id, student.name, -> COUNT(absence.date) AS absences -> FROM student LEFT JOIN absence -> ON student.student_id = absence.student_id -> GROUP BY student.student_id; student_id name absences Megan 0 2 Joseph 0 3 Kyle 1 4 Katie 0 5 Abby 1 6 Nathan 0 7 Liesl score. event ID event, score grade_event ID.., event ID. mysql> SELECT -> grade_event.date,grade_event.category, -> MIN(score.score) AS minimum, -> MAX(score.score) AS maximum, -> MAX(score.score)-MIN(score.score)+1 AS span, -> SUM(score.score) AS total, -> AVG(score.score) AS average, -> COUNT(score.score) AS count -> FROM score INNER JOIN grade_event -> ON score.event_id = grade_event.event_id -> GROUP BY grade_event.date; date category minimum maximum span total average count Q Q T Q Q T

78 78 PART 1,, COUNT() AVG(). event. mysql> SELECT grade_event.date, student.sex, -> COUNT(score.score) AS count, AVG(score.score) AS average -> FROM grade_event INNER JOIN score INNER JOIN student -> ON grade_event.event_id = score.event_id -> AND score.student_id = student.student_id -> GROUP BY grade_event.date, student.sex; date sex count average F M F M F M F M F M F M ,.. SELECT student.student_id, student.name, SUM(score.score) AS total, COUNT(score.score) AS n FROM grade_event INNER JOIN score INNER JOIN student ON grade_event.event_id = score.event_id AND score.student_id = student.student_id GROUP BY score.student_id ORDER BY total;.,.,,. mysql> SELECT p1.last_name, p1.first_name, p1.city, p1.state -> FROM president AS p1 INNER JOIN president AS p2 -> ON p1.city = p2.city AND p1.state = p2.state -> WHERE (p1.last_name <> p2.last_name OR p1.first_name <> p2.first_name) -> ORDER BY state, city, last_name;

79 Chapter last_name first_name city state Adams John Quincy Braintree MA Adams John Braintree MA , (p1 p2),.,. WHERE..., MONTH() DAYOFMONTH(). mysql> SELECT p1.last_name, p1.first_name, p1.birth -> FROM president AS p1 INNER JOIN president AS p2 -> WHERE MONTH(p1.birth) = MONTH(p2.birth) -> AND DAYOFMONTH(p1.birth) = DAYOFMONTH(p2.birth) -> AND (p1.last_name <> p2.last_name OR p1.first_name <> p2.first_name) -> ORDER BY p1.last_name; last_name first_name birth Harding Warren G Polk James K MONTH() DAYOFMONTH() DAYOFYEAR(),. SELECT ,. mysql> SELECT * FROM student -> WHERE student_id NOT IN (SELECT student_id FROM absence); name sex student_id

80 80 PART Megan F 1 Joseph M 2 Katie F 4 Nathan M 6 Liesl F 7... SELECT absence student_id, SELECT ID student Andrew Jackson.,. mysql> SELECT last_name, first_name, birth FROM president -> WHERE birth < (SELECT birth FROM president -> WHERE last_name = 'Jackson' AND first_name = 'Andrew'); last_name first_name birth Washington George Adams John Jefferson Thomas Madison James Monroe James SELECT Andrew Jackson, SELECT DELETE UPDATE.. DELETE. DELETE FROM tbl_name WHERE which rows to delete; WHERE,.., DELETE. DELETE FROM tbl_name;!, WHERE. SELECT WHERE

81 Chapter , president (Ohio),. mysql> DELETE FROM president WHERE state='oh'; Query OK, 7 rows affected (0.00 sec) DELETE, WHERE SELECT.. Teddy Roosevelt.? DELETE FROM president WHERE last_name='roosevelt';. Franklin Roosevelt., SELECT WHERE. mysql> SELECT last_name, first_name FROM president -> WHERE last_name='roosevelt'; last_name first_name Roosevelt Theodore Roosevelt Franklin D mysql> SELECT last_name, first_name FROM president -> WHERE last_name='roosevelt' AND first_name='theodore'; last_name first_name Roosevelt Theodore WHERE DELETE. mysql> DELETE FROM president -> WHERE last_name= Roosevelt AND first_name='theodore';,.?,.,. 1.5 mysql. UPDATE,. UPDATE tbl_name

82 82 PART 1 SET which columns to change WHERE which records to update WHERE DELETE.,., George. mysql> UPDATE student SET name='george';, WHERE. Historical League,. mysql> INSERT INTO member (last_name,first_name) -> VALUES('York','Jerome');,. WHERE UPDATE. mysql> UPDATE member -> SET expiration=' ' -> WHERE last_name='york' AND first_name='jerome';. UPDATE Jerome. mysql> UPDATE member -> SET ='jeromey@aol.com', street='123 Elm St', -> city='anytown', state='ny', zip='01003' -> WHERE last_name='york' AND first_name='jerome'; NULL ( NULL ). Jerome, Jerome NULL( ). mysql> UPDATE member -> SET expiration=null -> WHERE last_name='york' AND first_name='jerome' DELETE, UPDATE SELECT WHERE.,., sampdb., sampdb.

83 Chapter mysql., mysql,,.. MySQL... mysql. MySQL. mysql. mysqlimport mysqlshow MySQL., mysql.. F.2.2. UNIX ~/.my.cnf (.my.cnf ). Windows C (C:\my.ini) MySQL my.ini.,.. [client] host=server_host user=your_name password=your_pass [client] client. MySQL. server_host, your_name, your_pass,,., cobra.snake.net, MySQL, sampadm, secret,.my.cnf.

84 84 PART 1 [client] host=cobra.snake.net user=sampadm password=secret [client],.., UNIX MySQL UNIX user. host, localhost., UNIX.. % chmod 600.my.cnf % chmod u=rw,go-rwx.my.cnf tcsh bash,.,., mysql,. %!my! my. ( Ctrl-P Ctrl-N).. tcsh bash,.,.,., csh tcsh, alias sampdb. alias sampdb 'mysql -h cobra.snake.net -p -u sampadm sampdb' bash.,. alias sampdb='mysql -h cobra.snake.net -p -u sampadm sampdb',.

85 Chapter % sampdb % mysql -h cobra.snake.net -p -u sampadm sampdb,., (, tcsh.tcshrc, bash.bashrc.bash_profile ). Windows mysql (shortcut).. mysql. UNIX sampdb. #!/bin/sh exec mysql -h cobra.snake.net -p -u sampadm sampdb sampdb (chmod +x sampdb ), sampdb mysql. Windows (batch). smapdb.bat,. mysql -h cobra.snake.net -p -u sampadm sampdb DOS sampdb Windows. (shortcut),, mysql mysql,,. mysql,... mysql.. mysql (batch).

86 86 PART 1 mysql GNU Readline.,...,, ( ). [ 1.4].,. GNU bash (command editing). Windows, [ 1.5], mysql.

87 Chapter mysql. mysql> SHOW COLUMNS FROM persident; president persident,. 1. Ctrl-B persident s. 2. er Delete, ( ). 3. re. 4..,. mysql,,.

88 88 PART 1,. 1. mysql. 2. (, UNIX vi, Windows gvim ). 3.,. mysql.,,. ( ). Unix mysql,.mysql_history., mysql,.mysql_history.mysql_history. mysql. mysql... member interests., (Great Depression),. SELECT last_name, first_name, , interests FROM member WHERE interests LIKE %depression% ORDER BY last_name, first_name; interest.sql, mysql. % mysql sampdb < interests.sql, mysql. mysql, -t. % mysql -t sampdb < interests.sql,.

89 Chapter % mysql -t sampdb < interests.sql > interests.out mysql, source. mysql> source interests.sql Thomas Jefferson, depression Jefferson mysql.... interests., interests.sh. #!/bin/sh # interests.sh - USHL if [ $# -ne 1 ]; then echo 'Please specify one keyword'; exit; fi mysql -t sampdb <<QUERY_INPUT SELECT last_name, first_name, , interests FROM member WHERE interests LIKE '%$1%' ORDER BY last_name, first_name; QUERY_INPUT.. <<QUERY_INPUT QUERY_INPUT mysql., $1. ( $1, $2.).,. % chmod +x interests.sh,.. NOTE %./interests.sh "Jefferson';DROP DATABASE sampdb;"

MySQL-Ch10

MySQL-Ch10 10 Chapter.,,.,, MySQL. MySQL mysqld MySQL.,. MySQL. MySQL....,.,..,,.,. UNIX, MySQL. mysqladm mysqlgrp. MySQL 608 MySQL(2/e) Chapter 10 MySQL. 10.1 (,, ). UNIX MySQL, /usr/local/mysql/var, /usr/local/mysql/data,

More information

MySQL-Ch05

MySQL-Ch05 MySQL P A R T 2 Chapter 05 Chapter 06 Chapter 07 Chapter 08 05 Chapter MySQL MySQL. (, C, Perl, PHP),. 5.1 MySQL., mysqldump, mysqlimport, mysqladmin, mysql. MySQL. mysql,. SQL. MySQL... MySQL ( ). MySQL,.

More information

Lec. 2: MySQL and RMySQL

Lec. 2: MySQL and RMySQL 1 / 26 Lec. 2: MySQL and RMySQL Instructor: SANG-HOON CHO DEPT. OF STATISTICS AND ACTUARIAL SCIENCES Soongsil University 1. Introduction 2 / 26 이번강의에서는 MySQL 관계형데이터베이스관리시스템 (RDBMS, Relational Database

More information

10.ppt

10.ppt : SQL. SQL Plus. JDBC. SQL >> SQL create table : CREATE TABLE ( ( ), ( ),.. ) SQL >> SQL create table : id username dept birth email id username dept birth email CREATE TABLE member ( id NUMBER NOT NULL

More information

8 장데이터베이스 8.1 기본개념 - 데이터베이스 : 데이터를조직적으로구조화한집합 (cf. 엑셀파일 ) - 테이블 : 데이터의기록형식 (cf. 엑셀시트의첫줄 ) - 필드 : 같은종류의데이터 (cf. 엑셀시트의각칸 ) - 레코드 : 데이터내용 (cf. 엑셀시트의한줄 )

8 장데이터베이스 8.1 기본개념 - 데이터베이스 : 데이터를조직적으로구조화한집합 (cf. 엑셀파일 ) - 테이블 : 데이터의기록형식 (cf. 엑셀시트의첫줄 ) - 필드 : 같은종류의데이터 (cf. 엑셀시트의각칸 ) - 레코드 : 데이터내용 (cf. 엑셀시트의한줄 ) 8 장데이터베이스 8.1 기본개념 - 데이터베이스 : 데이터를조직적으로구조화한집합 (cf. 엑셀파일 ) - 테이블 : 데이터의기록형식 (cf. 엑셀시트의첫줄 ) - 필드 : 같은종류의데이터 (cf. 엑셀시트의각칸 ) - 레코드 : 데이터내용 (cf. 엑셀시트의한줄 ) - DDL(Data Definition Language) : show, create, drop

More information

Microsoft PowerPoint - 10Àå.ppt

Microsoft PowerPoint - 10Àå.ppt 10 장. DB 서버구축및운영 DBMS 의개념과용어를익힌다. 간단한 SQL 문법을학습한다. MySQL 서버를설치 / 운영한다. 관련용어 데이터 : 자료 테이블 : 데이터를표형식으로표현 레코드 : 테이블의행 필드또는컬럼 : 테이블의열 필드명 : 각필드의이름 데이터타입 : 각필드에입력할값의형식 학번이름주소연락처 관련용어 DB : 테이블의집합 DBMS : DB 들을관리하는소프트웨어

More information

본문서는 초급자들을 대상으로 최대한 쉽게 작성하였습니다. 본문서에서는 설치방법만 기술했으며 자세한 설정방법은 검색을 통하시기 바랍니다. 1. 설치개요 워드프레스는 블로그 형태의 홈페이지를 빠르게 만들수 있게 해 주는 프로그램입니다. 다양한 기능을 하는 플러그인과 디자인

본문서는 초급자들을 대상으로 최대한 쉽게 작성하였습니다. 본문서에서는 설치방법만 기술했으며 자세한 설정방법은 검색을 통하시기 바랍니다. 1. 설치개요 워드프레스는 블로그 형태의 홈페이지를 빠르게 만들수 있게 해 주는 프로그램입니다. 다양한 기능을 하는 플러그인과 디자인 스마일서브 CLOUD_Virtual 워드프레스 설치 (WORDPRESS INSTALL) 스마일서브 가상화사업본부 Update. 2012. 09. 04. 본문서는 초급자들을 대상으로 최대한 쉽게 작성하였습니다. 본문서에서는 설치방법만 기술했으며 자세한 설정방법은 검색을 통하시기 바랍니다. 1. 설치개요 워드프레스는 블로그 형태의 홈페이지를 빠르게 만들수 있게

More information

07.... 01V28.

07.... 01V28. National Election Commission 9 September S M T W T F S 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23/30 24 25 26 27 28 29 11 November S M T W T F S 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16

More information

<C7D1B1B920B1B9B9E6C0C720B5B5C0FCB0FA20B4EBC0C02E687770>

<C7D1B1B920B1B9B9E6C0C720B5B5C0FCB0FA20B4EBC0C02E687770> 제 장 자강 연합 협력 모델의 자주국방과 실천방향 이원우 요약 본 연구는 한미동맹 현실진단 북한위협과 한미일 안보협력 가능성 증 진 중국의 군사력 강화와 미일의 전략적 요구 한미동맹 관련 한국 내 갈 등 완화와 글로벌 네트워크 구축 필요성 등을 기반으로 자주국방 실천방 향을 제시한다 한국은 자강 연합 협력 메커니즘을 통하여 동북아지역의 조정자 내지 지원자 역할을

More information

untitled

untitled (shared) (integrated) (stored) (operational) (data) : (DBMS) :, (database) :DBMS File & Database - : - : ( : ) - : - : - :, - DB - - -DBMScatalog meta-data -DBMS -DBMS - -DBMS concurrency control E-R,

More information

TITLE

TITLE CSED421 Database Systems Lab MySQL Basic Syntax SQL DML & DDL Data Manipulation Language SELECT UPDATE DELETE INSERT INTO Data Definition Language CREATE DATABASE ALTER DATABASE CREATE TABLE ALTER TABLE

More information

Relational Model

Relational Model Relational Model Entity 실체 Department 학과코드 창립년도 홈페이지 학과코드 창립년도 홈페이지 학과코드 창립년도 홈페이지 학과코드 창립년도 홈페이지 학과코드 bis 창립년도 2001 홈페이지 bioeng. 학과코드 bs 창립년도 1972 홈페이지 bio. 학과코드 cs 창립년도 1972 홈페이지 cs. 학과코드 mas 창립년도 1972

More information

ORANGE FOR ORACLE V4.0 INSTALLATION GUIDE (Online Upgrade) ORANGE CONFIGURATION ADMIN O

ORANGE FOR ORACLE V4.0 INSTALLATION GUIDE (Online Upgrade) ORANGE CONFIGURATION ADMIN O Orange for ORACLE V4.0 Installation Guide ORANGE FOR ORACLE V4.0 INSTALLATION GUIDE...1 1....2 1.1...2 1.2...2 1.2.1...2 1.2.2 (Online Upgrade)...11 1.3 ORANGE CONFIGURATION ADMIN...12 1.3.1 Orange Configuration

More information

µðÇÃÇ¥Áö±¤°í´Ü¸é

µðÇÃÇ¥Áö±¤°í´Ü¸é Review 2 2013 JAN.FEB. vol. 23 Display Focus 3 Review 4 2013 JAN.FEB. vol. 23 Display Focus 5 Review 6 2013 JAN.FEB. vol. 23 Display Focus 7 Review 8 2013 JAN.FEB. vol. 23 Display Focus 9 Preview 2013.1

More information

5장 SQL 언어 Part II

5장 SQL 언어 Part II 5 장 SQL 언어 Part II 박창이 서울시립대학교통계학과 박창이 ( 서울시립대학교통계학과 ) 5 장 SQL 언어 Part II 1 / 26 데이터조작문 데이터검색 : SELECT 문데이터추가 : INSERT 문데이터수정 : UPDATE 문데이터삭제 : DELETE 문 박창이 ( 서울시립대학교통계학과 ) 5 장 SQL 언어 Part II 2 / 26 SELECT

More information

08년요람001~016

08년요람001~016 Challenge to the Greatness, Beautiful Leader 2008 2009 06 07 JANUARY 01 JUNE 06 FEBRUARY MARCH 02 03 JULY AUGUST 07 08 APRIL MAY 04 05 SEPTEMBER OCTOBER 09 10 2008 schooling schedule 08 09 2008 schooling

More information

3 S Q L A n t i p a t t e r n s Trees/intro/parent.sql CREATE TABLE Comments ( comment_id SERIAL PRIMARY KEY, parent_id BIGINT UNSIGNED, comment TEXT

3 S Q L A n t i p a t t e r n s Trees/intro/parent.sql CREATE TABLE Comments ( comment_id SERIAL PRIMARY KEY, parent_id BIGINT UNSIGNED, comment TEXT 3 S Q L A n t i p a t t e r n s Trees/intro/parent.sql CREATE TABLE Comments ( comment_id SERIAL PRIMARY KEY, parent_id BIGINT UNSIGNED, comment TEXT NOT NULL, FOREIGN KEY (parent_id) REFERENCES Comments(comment_id)

More information

1217 WebTrafMon II

1217 WebTrafMon II (1/28) (2/28) (10 Mbps ) Video, Audio. (3/28) 10 ~ 15 ( : telnet, ftp ),, (4/28) UDP/TCP (5/28) centralized environment packet header information analysis network traffic data, capture presentation network

More information

구축환경 OS : Windows 7 그외 OS 의경우교재 p26-40 참조 Windows 의다른버전은조금다르게나타날수있음 Browser : Google Chrome 다른브라우저를사용해도별차이없으나추후수업의모든과정은크롬사용 한

구축환경 OS : Windows 7 그외 OS 의경우교재 p26-40 참조 Windows 의다른버전은조금다르게나타날수있음 Browser : Google Chrome 다른브라우저를사용해도별차이없으나추후수업의모든과정은크롬사용   한 수업환경구축 웹데이터베이스구축및실습 구축환경 OS : Windows 7 그외 OS 의경우교재 p26-40 참조 Windows 의다른버전은조금다르게나타날수있음 Browser : Google Chrome 다른브라우저를사용해도별차이없으나추후수업의모든과정은크롬사용 http://chrome.google.com 한림대학교웹데이터베이스 - 이윤환 APM 설치 : AUTOSET6

More information

MySQL-.. 1

MySQL-.. 1 MySQL- 기초 1 Jinseog Kim Dongguk University jinseog.kim@gmail.com 2017-08-25 Jinseog Kim Dongguk University jinseog.kim@gmail.com MySQL-기초 1 2017-08-25 1 / 18 SQL의 기초 SQL은 아래의 용도로 구성됨 데이터정의 언어(Data definition

More information

13주-14주proc.PDF

13주-14주proc.PDF 12 : Pro*C/C++ 1 2 Embeded SQL 3 PRO *C 31 C/C++ PRO *C NOT! NOT AND && AND OR OR EQUAL == = SQL,,, Embeded SQL SQL 32 Pro*C C SQL Pro*C C, C Pro*C, C C 321, C char : char[n] : n int, short, long : float

More information

untitled

untitled Push... 2 Push... 4 Push... 5 Push... 13 Push... 15 1 FORCS Co., LTD A Leader of Enterprise e-business Solution Push (Daemon ), Push Push Observer. Push., Observer. Session. Thread Thread. Observer ID.

More information

PowerPoint 프레젠테이션

PowerPoint 프레젠테이션 MySQL - 명령어 1. 데이터베이스관련명령 2. 데이터베이스테이블관련명령 3. SQL 명령의일괄실행 4. 레코드관련명령 5. 데이터베이스백업및복원명령 1. 데이터베이스관련명령 데이터베이스접속명령 데이터베이스접속명령 mysql -u계정 -p비밀번호데이터베이스명 C: > mysql -ukdhong p1234 kdhong_db 데이터베이스생성명령 데이터베이스생성명령

More information

강의 개요

강의 개요 DDL TABLE 을만들자 웹데이터베이스 TABLE 자료가저장되는공간 문자자료의경우 DB 생성시지정한 Character Set 대로저장 Table 생성시 Table 의구조를결정짓는열속성지정 열 (Clumn, Attribute) 은이름과자료형을갖는다. 자료형 : http://dev.mysql.cm/dc/refman/5.1/en/data-types.html TABLE

More information

Remote UI Guide

Remote UI Guide Remote UI KOR Remote UI Remote UI PDF Adobe Reader/Adobe Acrobat Reader. Adobe Reader/Adobe Acrobat Reader Adobe Systems Incorporated.. Canon. Remote UI GIF Adobe Systems Incorporated Photoshop. ..........................................................

More information

PowerPoint 프레젠테이션

PowerPoint 프레젠테이션 Spider For MySQL 실전사용기 피망플러스유닛최윤묵 Spider For MySQL Data Sharding By Spider Storage Engine http://spiderformysql.com/ 성능 8 만 / 분 X 4 대 32 만 / 분 많은 DB 중에왜 spider 를? Source: 클라우드컴퓨팅구 선택의기로 Consistency RDBMS

More information

C 프로그래밍 언어 입문 C 프로그래밍 언어 입문 김명호저 숭실대학교 출판국 머리말..... C, C++, Java, Fortran, Python, Ruby,.. C. C 1972. 40 C.. C. 1999 C99. C99. C. C. C., kmh ssu.ac.kr.. ,. 2013 12 Contents 1장 프로그래밍 시작 1.1 C 10 1.2 12

More information

2013........10

2013........10 06 07 04 13 14 18 22 26 28 32 36 40 44 72 86 87 88 48 80 82 90 GongGam Human Rights Law Foundation 02+03 인사글 하늘은 욕망 없는 생명을 만들지 아니하고 대지는 이름 없는 풀을 키우지 아니한다. (天不 세월과 권력과 부침에 흔들리지 않고 한국 사회에 뿌리 깊이 내린 한 그루 나무가

More information

untitled

untitled PowerBuilder 連 Microsoft SQL Server database PB10.0 PB9.0 若 Microsoft SQL Server 料 database Profile MSS 料 (Microsoft SQL Server database interface) 行了 PB10.0 了 Sybase 不 Microsoft 料 了 SQL Server 料 PB10.0

More information

DocsPin_Korean.pages

DocsPin_Korean.pages Unity Localize Script Service, Page 1 Unity Localize Script Service Introduction Application Game. Unity. Google Drive Unity.. Application Game. -? ( ) -? -?.. 준비사항 Google Drive. Google Drive.,.. - Google

More information

I T C o t e n s P r o v i d e r h t t p : / / w w w. h a n b i t b o o k. c o. k r

I T C o t e n s P r o v i d e r h t t p : / / w w w. h a n b i t b o o k. c o. k r I T C o t e n s P r o v i d e r h t t p : / / w w w. h a n b i t b o o k. c o. k r -------------------------------------------------------------------- -- 1. : ts_cre_bonsa.sql -- 2. :

More information

Connection 8 22 UniSQLConnection / / 9 3 UniSQL OID SET

Connection 8 22 UniSQLConnection / / 9 3 UniSQL OID SET 135-080 679-4 13 02-3430-1200 1 2 11 2 12 2 2 8 21 Connection 8 22 UniSQLConnection 8 23 8 24 / / 9 3 UniSQL 11 31 OID 11 311 11 312 14 313 16 314 17 32 SET 19 321 20 322 23 323 24 33 GLO 26 331 GLO 26

More information

DBMS & SQL Server Installation Database Laboratory

DBMS & SQL Server Installation Database Laboratory DBMS & 조교 _ 최윤영 } 데이터베이스연구실 (1314 호 ) } 문의사항은 cyy@hallym.ac.kr } 과제제출은 dbcyy1@gmail.com } 수업공지사항및자료는모두홈페이지에서확인 } dblab.hallym.ac.kr } 홈페이지 ID: 학번 } 홈페이지 PW:s123 2 차례 } } 설치전점검사항 } 설치단계별설명 3 Hallym Univ.

More information

윈도우시스템프로그래밍

윈도우시스템프로그래밍 데이터베이스및설계 MySQL 을위한 MFC 를사용한 ODBC 프로그래밍 2012.05.10. 오병우 컴퓨터공학과금오공과대학교 http://www.apmsetup.com 또는 http://www.mysql.com APM Setup 설치발표자료참조 Department of Computer Engineering 2 DB 에속한테이블보기 show tables; 에러발생

More information

@OneToOne(cascade = = "addr_id") private Addr addr; public Emp(String ename, Addr addr) { this.ename = ename; this.a

@OneToOne(cascade = = addr_id) private Addr addr; public Emp(String ename, Addr addr) { this.ename = ename; this.a 1 대 1 단방향, 주테이블에외래키실습 http://ojcedu.com, http://ojc.asia STS -> Spring Stater Project name : onetoone-1 SQL : JPA, MySQL 선택 http://ojc.asia/bbs/board.php?bo_table=lecspring&wr_id=524 ( 마리아 DB 설치는위 URL

More information

¿ì¾ç-ÃÖÁ¾

¿ì¾ç-ÃÖÁ¾ Website : www.wooyang.org Email : wy-welcome@hanmail.net 우양홈페이지www.wooyang.org를 방문하셔서 더 다양한 내용에 관심 가져 주세요. 혹은 QR코드를 스캔해주세요. 2010 우양재단 사업보고서 닮고 싶은 청년 우양의 즐거운 섬김 발행일 2011년 5월 발행처 우양재단 발행인 정의승 주소 서울시 마포구

More information

초보자를 위한 C++

초보자를 위한 C++ C++. 24,,,,, C++ C++.,..,., ( ). /. ( 4 ) ( ).. C++., C++ C++. C++., 24 C++. C? C++ C C, C++ (Stroustrup) C++, C C++. C. C 24.,. C. C+ +?. X C++.. COBOL COBOL COBOL., C++. Java C# C++, C++. C++. Java C#

More information

Solaris Express Developer Edition

Solaris Express Developer Edition Solaris Express Developer Edition : 2008 1 Solaris TM Express Developer Edition Solaris OS. Sun / Solaris, Java, Web 2.0,,. Developer Solaris Express Developer Edition System Requirements. 768MB. SPARC

More information

歯PLSQL10.PDF

歯PLSQL10.PDF 10 - SQL*Pl u s Pl / SQL - SQL*P lus 10-1 1 0.1 PL/ SQL SQL*Pl u s. SQL*P lus 10-2 1 0.2 S QL* Pl u s PL/ S QL SQL*Pl u s, Pl / SQL. - PL/ SQL (i npu t ), (s t or e ), (r un). - PL/ SQL s cr i pt,,. -

More information

Oracle Database 10g: Self-Managing Database DB TSC

Oracle Database 10g: Self-Managing Database DB TSC Oracle Database 10g: Self-Managing Database DB TSC Agenda Overview System Resource Application & SQL Storage Space Backup & Recovery ½ Cost ? 6% 12 % 6% 6% 55% : IOUG 2001 DBA Survey ? 6% & 12 % 6% 6%

More information

1. efolder 시스템구성 A. DB B. apache - mod-perl - PHP C. SphinxSearch ( 검색서비스 ) D. File Storage 2. efolder 설치순서 A. DB (MySQL) B. efolder Service - efolder

1. efolder 시스템구성 A. DB B. apache - mod-perl - PHP C. SphinxSearch ( 검색서비스 ) D. File Storage 2. efolder 설치순서 A. DB (MySQL) B. efolder Service - efolder Embian efolder 설치가이드 efolder 시스템구성 efolder 설치순서 Installation commands 1. efolder 시스템구성 A. DB B. apache - mod-perl - PHP C. SphinxSearch ( 검색서비스 ) D. File Storage 2. efolder 설치순서 A. DB (MySQL) B. efolder

More information

지속가능경영보고서도큐_전체

지속가능경영보고서도큐_전체 C o n t e n t s 03 06 07 10 30 38 43 55 56 60 62 70 71 Korea Foundation for Women Annual Report 2010 SLOGAN VISION 2 3 MISSION 1 MISSION 3 MISSION 2 4 5 Korea Foundation for Women Annual Report 2010 Korea

More information

Chap7.PDF

Chap7.PDF Chapter 7 The SUN Intranet Data Warehouse: Architecture and Tools All rights reserved 1 Intranet Data Warehouse : Distributed Networking Computing Peer-to-peer Peer-to-peer:,. C/S Microsoft ActiveX DCOM(Distributed

More information

목차 BUG offline replicator 에서유효하지않은로그를읽을경우비정상종료할수있다... 3 BUG 각 partition 이서로다른 tablespace 를가지고, column type 이 CLOB 이며, 해당 table 을 truncate

목차 BUG offline replicator 에서유효하지않은로그를읽을경우비정상종료할수있다... 3 BUG 각 partition 이서로다른 tablespace 를가지고, column type 이 CLOB 이며, 해당 table 을 truncate ALTIBASE HDB 6.1.1.5.6 Patch Notes 목차 BUG-39240 offline replicator 에서유효하지않은로그를읽을경우비정상종료할수있다... 3 BUG-41443 각 partition 이서로다른 tablespace 를가지고, column type 이 CLOB 이며, 해당 table 을 truncate 한뒤, hash partition

More information

FileMaker 15 ODBC 및 JDBC 설명서

FileMaker 15 ODBC 및 JDBC 설명서 FileMaker 15 ODBC JDBC 2004-2016 FileMaker, Inc.. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker FileMaker Go FileMaker, Inc.. FileMaker WebDirect FileMaker, Inc... FileMaker.

More information

목차 BUG 문법에맞지않는질의문수행시, 에러메시지에질의문의일부만보여주는문제를수정합니다... 3 BUG ROUND, TRUNC 함수에서 DATE 포맷 IW 를추가지원합니다... 5 BUG ROLLUP/CUBE 절을포함하는질의는 SUBQUE

목차 BUG 문법에맞지않는질의문수행시, 에러메시지에질의문의일부만보여주는문제를수정합니다... 3 BUG ROUND, TRUNC 함수에서 DATE 포맷 IW 를추가지원합니다... 5 BUG ROLLUP/CUBE 절을포함하는질의는 SUBQUE ALTIBASE HDB 6.3.1.10.1 Patch Notes 목차 BUG-45710 문법에맞지않는질의문수행시, 에러메시지에질의문의일부만보여주는문제를수정합니다... 3 BUG-45730 ROUND, TRUNC 함수에서 DATE 포맷 IW 를추가지원합니다... 5 BUG-45760 ROLLUP/CUBE 절을포함하는질의는 SUBQUERY REMOVAL 변환을수행하지않도록수정합니다....

More information

휠세미나3 ver0.4

휠세미나3 ver0.4 andromeda@sparcs:/$ ls -al dev/sda* brw-rw---- 1 root disk 8, 0 2014-06-09 18:43 dev/sda brw-rw---- 1 root disk 8, 1 2014-06-09 18:43 dev/sda1 brw-rw---- 1 root disk 8, 2 2014-06-09 18:43 dev/sda2 andromeda@sparcs:/$

More information

歯3일_.PDF

歯3일_.PDF uuhm Daewoo Daily * 0.0% 23.6% 38.2% 50.0% 61.8% 100.0% 980 970 960 950 940 930 920 910 900 890 880 870 860 850 840 830 820 810 800 790 780 770 760 750 740 730 720 710 700 690 680 670 660 650 640 630

More information

빅데이터분산컴퓨팅-5-수정

빅데이터분산컴퓨팅-5-수정 Apache Hive 빅데이터분산컴퓨팅 박영택 Apache Hive 개요 Apache Hive 는 MapReduce 기반의 High-level abstraction HiveQL은 SQL-like 언어를사용 Hadoop 클러스터에서 MapReduce 잡을생성함 Facebook 에서데이터웨어하우스를위해개발되었음 현재는오픈소스인 Apache 프로젝트 Hive 유저를위한

More information

PowerChute Personal Edition v3.1.0 에이전트 사용 설명서

PowerChute Personal Edition v3.1.0 에이전트 사용 설명서 PowerChute Personal Edition v3.1.0 990-3772D-019 4/2019 Schneider Electric IT Corporation Schneider Electric IT Corporation.. Schneider Electric IT Corporation,,,.,. Schneider Electric IT Corporation..

More information

Copyright 2012, Oracle and/or its affiliates. All rights reserved.,.,,,,,,,,,,,,.,...,. U.S. GOVERNMENT END USERS. Oracle programs, including any oper

Copyright 2012, Oracle and/or its affiliates. All rights reserved.,.,,,,,,,,,,,,.,...,. U.S. GOVERNMENT END USERS. Oracle programs, including any oper Windows Netra Blade X3-2B( Sun Netra X6270 M3 Blade) : E37790 01 2012 9 Copyright 2012, Oracle and/or its affiliates. All rights reserved.,.,,,,,,,,,,,,.,...,. U.S. GOVERNMENT END USERS. Oracle programs,

More information

歯sql_tuning2

歯sql_tuning2 SQL Tuning (2) SQL SQL SQL Tuning ROW(1) ROW(2) ROW(n) update ROW(2) at time 1 & Uncommitted update ROW(2) at time 2 SQLDBA> @ UTLLOCKT WAITING_SESSION TYPE MODE_REQUESTED MODE_HELD LOCK_ID1

More information

슬라이드 1

슬라이드 1 2012 월간계획표 2012.01 January memo 1 2 3 4 5 6 7 8 9 10 11 12 13 D-300 14 15 16 17 18 19 20 21 22 23 설날 1.1 24 25 26 27 28 29 30 31 January 12.26~01.01 12.29 12.26 12.30 12.27 12.31 12.28 01.01 January 01.02~01.08

More information

NoSQL

NoSQL MongoDB Daum Communications NoSQL Using Java Java VM, GC Low Scalability Using C Write speed Auto Sharding High Scalability Using Erlang Read/Update MapReduce R/U MR Cassandra Good Very Good MongoDB Good

More information

ADU

ADU Regents exam in U.s. HistoRy And government The University of the State of New York Regents HigH school examination 미국 역사 및 정부 KOREAN EDITION U.S. HISTORY AND GOVERNMENT TUESDAY, JUNE 16, 2015 9:15 A.M.

More information

초보자를 위한 ADO 21일 완성

초보자를 위한 ADO 21일 완성 ADO 21, 21 Sams Teach Yourself ADO 2.5 in 21 Days., 21., 2 1 ADO., ADO.? ADO 21 (VB, VBA, VB ), ADO. 3 (Week). 1, 2, COM+ 3.. HTML,. 3 (week), ADO. 24 1 - ADO OLE DB SQL, UDA(Universal Data Access) ADO.,,

More information

문서 템플릿

문서 템플릿 HDSI 툴분석 [sql injection 기술명세서 ] Sql injection 기술명세서 Ver. 0.01 이문서는 sql injection 기술명세가범위입니다. Copyrights Copyright 2009 by CanvasTeam@SpeeDroot( 장경칩 ) All Rights Reserved. 장경칩의사전승인없이본내용의전부또는일부에대한복사, 전재,

More information

chapter4

chapter4 Basic Netw rk 1. ก ก ก 2. 3. ก ก 4. ก 2 1. 2. 3. 4. ก 5. ก 6. ก ก 7. ก 3 ก ก ก ก (Mainframe) ก ก ก ก (Terminal) ก ก ก ก ก ก ก ก 4 ก (Dumb Terminal) ก ก ก ก Mainframe ก CPU ก ก ก ก 5 ก ก ก ก ก ก ก ก ก ก

More information

Intra_DW_Ch4.PDF

Intra_DW_Ch4.PDF The Intranet Data Warehouse Richard Tanler Ch4 : Online Analytic Processing: From Data To Information 2000. 4. 14 All rights reserved OLAP OLAP OLAP OLAP OLAP OLAP is a label, rather than a technology

More information

RUCK2015_Gruter_public

RUCK2015_Gruter_public Apache Tajo 와 R 을연동한빅데이터분석 고영경 / 그루터 ykko@gruter.com 목차 : R Tajo Tajo RJDBC Tajo Tajo UDF( ) TajoR Demo Q&A R 과빅데이터분석 ' R 1) R 2) 3) R (bigmemory, snowfall,..) 4) R (NoSQL, MapReduce, Hive / RHIPE, RHive,..)

More information

PWR PWR HDD HDD USB USB Quick Network Setup Guide xdsl/cable Modem PC DVR 1~3 1.. DVR DVR IP xdsl Cable xdsl Cable PC PC DDNS (

PWR PWR HDD HDD USB USB Quick Network Setup Guide xdsl/cable Modem PC DVR 1~3 1.. DVR DVR IP xdsl Cable xdsl Cable PC PC DDNS ( PWR PWR HDD HDD USB USB Quick Network Setup Guide xdsl/cable Modem PC DVR 1~3 1.. DVR DVR IP xdsl Cable xdsl Cable PC PC DDNS (http://ddns.hanwha-security.com) Step 1~5. Step, PC, DVR Step 1. Cable Step

More information

thesis

thesis ( Design and Implementation of a Generalized Management Information Repository Service for Network and System Management ) ssp@nile nile.postech.ac..ac.kr DPE Lab. 1997 12 16 GMIRS GMIRS GMIRS prototype

More information

윈도우시스템프로그래밍

윈도우시스템프로그래밍 데이타베이스 MySQL 을위한 MFC 를사용한 ODBC 프로그래밍 2013.05.15. 오병우 컴퓨터공학과금오공과대학교 http://www.apmsetup.com 또는 http://www.mysql.com APM Setup 설치발표자료참조 Department of Computer Engineering 2 DB 에속한테이블보기 show tables; 에러발생

More information

µðÇÃÇ¥Áö±¤°í´Ü¸é

µðÇÃÇ¥Áö±¤°í´Ü¸é 2013. JAN. FEB. VOL.23 2013. JAN. FEB. VOL.23 Review Preview Company Technical Point Focus Issue Market Trend Industrial Trend Policy Report KDIA News Tour Statistics KDIA 02 10 11 12 15 16 22 28 36 38

More information

10X56_NWG_KOR.indd

10X56_NWG_KOR.indd 디지털 프로젝터 X56 네트워크 가이드 이 제품을 구입해 주셔서 감사합니다. 본 설명서는 네트워크 기능 만을 설명하기 위한 것입니다. 본 제품을 올바르게 사 용하려면 이 취급절명저와 본 제품의 다른 취급절명저를 참조하시기 바랍니다. 중요한 주의사항 이 제품을 사용하기 전에 먼저 이 제품에 대한 모든 설명서를 잘 읽어 보십시오. 읽은 뒤에는 나중에 필요할 때

More information

별지 제10호 서식

별지 제10호 서식 국립국어원 정보 보안 업무 처리 규정 제정 2013. 12. 26. 국립국어원 예규 제 95호 일부개정 2014. 3. 10. 국립국어원 예규 제111호 제 1 장 총 칙 제 1 조(목적) 이 규정은 국립국어원의 정보보안업무 수행에 필요한 사항을 규정함을 목적으로 한다. 제 2 조(정의) 이 규정에서 사용하는 용어의 정의는 다음 각 호와 같다. 1. 부서 라

More information

01_피부과Part-01

01_피부과Part-01 PART 1 CHAPTER 01 3 PART 4 C H A P T E R 5 PART CHAPTER 02 6 C H A P T E R CHAPTER 03 7 PART 8 C H A P T E R 9 PART 10 C H A P T E R 11 PART 12 C H A P T E R 13 PART 14 C H A P T E R TIP 15 PART TIP TIP

More information

Microsoft PowerPoint Python-DB

Microsoft PowerPoint Python-DB 순천향대학교컴퓨터공학과이상정 순천향대학교컴퓨터공학과 1 학습내용 데이터베이스 SQLite 데이터베이스 파이썬과데이터베이스연결 순천향대학교컴퓨터공학과 2 데이터베이스 (Database) 소개 데이터베이스 DBMS (DataBase Management System) 이라고도함 대용량의데이터를매우효율적으로처리하고저장하는기술 SQLite, 오라클, MySQL 등이있음

More information

DW 개요.PDF

DW 개요.PDF Data Warehouse Hammersoftkorea BI Group / DW / 1960 1970 1980 1990 2000 Automating Informating Source : Kelly, The Data Warehousing : The Route to Mass Customization, 1996. -,, Data .,.., /. ...,.,,,.

More information

Cache_cny.ppt [읽기 전용]

Cache_cny.ppt [읽기 전용] Application Server iplatform Oracle9 A P P L I C A T I O N S E R V E R i Improving Performance and Scalability with Oracle9iAS Cache Oracle9i Application Server Cache... Oracle9i Application Server Web

More information

CD-RW_Advanced.PDF

CD-RW_Advanced.PDF HP CD-Writer Program User Guide - - Ver. 2.0 HP CD-RW Adaptec Easy CD Creator Copier, Direct CD. HP CD-RW,. Easy CD Creator 3.5C, Direct CD 3.0., HP. HP CD-RW TEAM ( 02-3270-0803 ) < > 1. CD...3 CD...5

More information

ETL_project_best_practice1.ppt

ETL_project_best_practice1.ppt ETL ETL Data,., Data Warehouse DataData Warehouse ETL tool/system: ETL, ETL Process Data Warehouse Platform Database, Access Method Data Source Data Operational Data Near Real-Time Data Modeling Refresh/Replication

More information

RDB개요.ppt

RDB개요.ppt 1 2 3 < > 1 SQL SQL 2 SQL 3 column DEPT DEPT# DNAME BUDGET D1 D2 D3 Marketing Development Research 10M 12M 5M tuple EMP EMP# ENAME DEPT# SALARY D1 40 D1 45 E1 E2 E3 Lopez Cheng Finzi D2 30 E4 Satio D2

More information

<BCBCB0E8C1F6BFAAC7D0C8B832332D312E687770>

<BCBCB0E8C1F6BFAAC7D0C8B832332D312E687770> 20 세기미제국행보의역사적회고 / 한글초록 9 11,,.,..,.. :,,.,.,. 6 23 1.,,,., (Johnson 2004)..,,. (Dumenil 2004).,,,. 19. (Prestowitz, 2003)..,,.,., ( 2005). 9 11,, 7.,.. 1776,.,. 1800,,,,,,. 1823,.,.,,.,,.., 1836, 1845

More information

소개 TeraStation 을 구입해 주셔서 감사합니다! 이 사용 설명서는 TeraStation 구성 정보를 제공합니다. 제품은 계속 업데이트되므로, 이 설명서의 이미지 및 텍스트는 사용자가 보유 중인 TeraStation 에 표시 된 이미지 및 텍스트와 약간 다를 수

소개 TeraStation 을 구입해 주셔서 감사합니다! 이 사용 설명서는 TeraStation 구성 정보를 제공합니다. 제품은 계속 업데이트되므로, 이 설명서의 이미지 및 텍스트는 사용자가 보유 중인 TeraStation 에 표시 된 이미지 및 텍스트와 약간 다를 수 사용 설명서 TeraStation Pro II TS-HTGL/R5 패키지 내용물: 본체 (TeraStation) 이더넷 케이블 전원 케이블 TeraNavigator 설치 CD 사용 설명서 (이 설명서) 제품 보증서 www.buffalotech.com 소개 TeraStation 을 구입해 주셔서 감사합니다! 이 사용 설명서는 TeraStation 구성 정보를

More information

PCServerMgmt7

PCServerMgmt7 Web Windows NT/2000 Server DP&NM Lab 1 Contents 2 Windows NT Service Provider Management Application Web UI 3 . PC,, Client/Server Network 4 (1),,, PC Mainframe PC Backbone Server TCP/IP DCS PLC Network

More information

????좔??

????좔?? WhitebookVol.2 KUSSO 2010 KU Social Service Organization 2 CONTENTS 1 2008.12.23~2009.11.30 2,768 22,509 2 2009.12.01~2010.11.30 3,011 67,002 Total 5,779 89,511 2, (2010 11 30) () 2010.01.10-01.17 21 64

More information

PowerPoint 프레젠테이션

PowerPoint 프레젠테이션 @ Lesson 2... ( ). ( ). @ vs. logic data method variable behavior attribute method field Flow (Type), ( ) member @ () : C program Method A ( ) Method B ( ) Method C () program : Java, C++, C# data @ Program

More information

Assign an IP Address and Access the Video Stream - Installation Guide

Assign an IP Address and Access the Video Stream - Installation Guide 설치 안내서 IP 주소 할당 및 비디오 스트림에 액세스 책임 본 문서는 최대한 주의를 기울여 작성되었습니다. 잘못되거나 누락된 정보가 있는 경우 엑시스 지사로 알려 주시기 바랍니다. Axis Communications AB는 기술적 또는 인쇄상의 오류에 대해 책 임을 지지 않으며 사전 통지 없이 제품 및 설명서를 변경할 수 있습니다. Axis Communications

More information

Portal_9iAS.ppt [읽기 전용]

Portal_9iAS.ppt [읽기 전용] Application Server iplatform Oracle9 A P P L I C A T I O N S E R V E R i Oracle9i Application Server e-business Portal Client Database Server e-business Portals B2C, B2B, B2E, WebsiteX B2Me GUI ID B2C

More information

FileMaker ODBC 및 JDBC 가이드

FileMaker ODBC 및 JDBC 가이드 FileMaker ODBC JDBC 2004-2019 FileMaker, Inc.. FileMaker, Inc. 5201 Patrick Henry Drive Santa Clara, California 95054 FileMaker, FileMaker Cloud, FileMaker Go FileMaker, Inc.. FileMaker WebDirect FileMaker,

More information

(Humphery Kim) RAD Studio : h=p://tech.devgear.co.kr/ : h=p://blog.hjf.pe.kr/ Facebook : h=p://d.com/hjfactory :

(Humphery Kim) RAD Studio : h=p://tech.devgear.co.kr/ : h=p://blog.hjf.pe.kr/ Facebook : h=p://d.com/hjfactory : #2 (RAD STUDIO) In www.devgear.co.kr 2016.05.18 (Humphery Kim) RAD Studio : h=p://tech.devgear.co.kr/ : h=p://blog.hjf.pe.kr/ Facebook : h=p://d.com/hjfactory : hskim@embarcadero.kr 3! 1 - RAD, 2-3 - 4

More information

6주차.key

6주차.key 6, Process concept A program in execution Program code PCB (process control block) Program counter, registers, etc. Stack Heap Data section => global variable Process in memory Process state New Running

More information

T100MD+

T100MD+ User s Manual 100% ) ( x b a a + 1 RX+ TX+ DTR GND TX+ RX+ DTR GND RX+ TX+ DTR GND DSR RX+ TX+ DTR GND DSR [ DCE TYPE ] [ DCE TYPE ] RS232 Format Baud 1 T100MD+

More information

SQL Developer Connect to TimesTen 유니원아이앤씨 DB 기술지원팀 2010 년 07 월 28 일 문서정보 프로젝트명 SQL Developer Connect to TimesTen 서브시스템명 버전 1.0 문서명 작성일 작성자

SQL Developer Connect to TimesTen 유니원아이앤씨 DB 기술지원팀 2010 년 07 월 28 일 문서정보 프로젝트명 SQL Developer Connect to TimesTen 서브시스템명 버전 1.0 문서명 작성일 작성자 SQL Developer Connect to TimesTen 유니원아이앤씨 DB 팀 2010 년 07 월 28 일 문서정보 프로젝트명 SQL Developer Connect to TimesTen 서브시스템명 버전 1.0 문서명 작성일 2010-07-28 작성자 김학준 최종수정일 2010-07-28 문서번호 20100728_01_khj 재개정이력 일자내용수정인버전

More information

ARMBOOT 1

ARMBOOT 1 100% 2003222 : : : () PGPnet 1 (Sniffer) 1, 2,,, (Sniffer), (Sniffer),, (Expert) 3, (Dashboard), (Host Table), (Matrix), (ART, Application Response Time), (History), (Protocol Distribution), 1 (Select

More information

USB USB DV25 DV25 REC SRN-475S REC SRN-475S LAN POWER LAN POWER Quick Network Setup Guide xdsl/cable Modem PC DVR 1~3 1.. DVR DVR IP xdsl Cable xdsl C

USB USB DV25 DV25 REC SRN-475S REC SRN-475S LAN POWER LAN POWER Quick Network Setup Guide xdsl/cable Modem PC DVR 1~3 1.. DVR DVR IP xdsl Cable xdsl C USB USB DV25 DV25 REC SRN-475S REC SRN-475S LAN POWER LAN POWER Quick Network Setup Guide xdsl/cable Modem PC DVR 1~3 1.. DVR DVR IP xdsl Cable xdsl Cable PC PC Step 1~5. Step, PC, DVR Step 1. Cable Step

More information

Data Sync Manager(DSM) Example Guide Data Sync Manager (DSM) Example Guide DSM Copyright 2003 Ari System, Inc. All Rights reserved. Data Sync Manager

Data Sync Manager(DSM) Example Guide Data Sync Manager (DSM) Example Guide DSM Copyright 2003 Ari System, Inc. All Rights reserved. Data Sync Manager Data Sync Manager (DSM) Example Guide DSM Copyright 2003 Ari System, Inc. All Rights reserved. Data Sync Manager are trademarks or registered trademarks of Ari System, Inc. 1 Table of Contents Chapter1

More information

단계

단계 본문서에서는 Tibero RDBMS 에서제공하는 Oracle DB Link 를위한 gateway 설치및설정방법과 Oracle DB Link 사용법을소개한다. Contents 1. TIBERO TO ORACLE DB LINK 개요... 3 1.1. GATEWAY 란... 3 1.2. ORACLE GATEWAY... 3 1.3. GATEWAY 디렉터리구조...

More information

28 THE ASIAN JOURNAL OF TEX [2] ko.tex [5]

28 THE ASIAN JOURNAL OF TEX [2] ko.tex [5] The Asian Journal of TEX, Volume 3, No. 1, June 2009 Article revision 2009/5/7 KTS THE KOREAN TEX SOCIETY SINCE 2007 2008 ko.tex Installing TEX Live 2008 and ko.tex under Ubuntu Linux Kihwang Lee * kihwang.lee@ktug.or.kr

More information

uFOCS

uFOCS 1 기 : 기 UF_D_V250_002 기 기 기 품 ufocs 기 v2.5.0 히기기기기기기기기기 기 Manual 기 version 기 3.2 기품 2011.7.29 히기 345-13 1 Tel : 02-857-3051 Fax : 02-3142-0319 : http://www.satu.co.kr 2010 SAT information Co., Ltd. All

More information

Sena Technologies, Inc. HelloDevice Super 1.1.0

Sena Technologies, Inc. HelloDevice Super 1.1.0 HelloDevice Super 110 Copyright 1998-2005, All rights reserved HelloDevice 210 ()137-130 Tel: (02) 573-5422 Fax: (02) 573-7710 E-Mail: support@senacom Website: http://wwwsenacom Revision history Revision

More information

PowerPoint 프레젠테이션

PowerPoint 프레젠테이션 Reasons for Poor Performance Programs 60% Design 20% System 2.5% Database 17.5% Source: ORACLE Performance Tuning 1 SMS TOOL DBA Monitoring TOOL Administration TOOL Performance Insight Backup SQL TUNING

More information

슬라이드 1

슬라이드 1 Tadpole for DB 1. 도구개요 2. 설치및실행 4. 활용예제 1. 도구개요 도구명 소개 Tadpole for DB Tools (sites.google.com/site/tadpolefordb/) 웹기반의데이터베이스를관리하는도구 Database 스키마및데이터관리 라이선스 LGPL (Lesser General Public License) 특징 주요기능

More information

ODS-FM1

ODS-FM1 OPTICAL DISC ARCHIVE FILE MANAGER ODS-FM1 INSTALLATION GUIDE [Korean] 1st Edition (Revised 4) 상표 Microsoft, Windows 및 Internet Explorer는 미국 및 / 또는 다른 국가에서 Microsoft Corporation 의 등록 상표입 Intel 및 Intel Core

More information

¼Ł¿ï¸ðµåÃÖÁ¾

¼Ł¿ï¸ðµåÃÖÁ¾ Fashion Fashion Blue ocean Passion Chance Contents Blue ocean Fashion Passion Contents Chance Fashion Blue ocean Blue ocean 003 Blue ocean 004 Fashion Blue ocean 005 Blue ocean http://blog.naver.com/klcblog?redirect=log&logno=90041062323

More information

LXR 설치 및 사용법.doc

LXR 설치 및 사용법.doc Installation of LXR (Linux Cross-Reference) for Source Code Reference Code Reference LXR : 2002512( ), : 1/1 1 3 2 LXR 3 21 LXR 3 22 LXR 221 LXR 3 222 LXR 3 3 23 LXR lxrconf 4 24 241 httpdconf 6 242 htaccess

More information

Microsoft PowerPoint - 27.pptx

Microsoft PowerPoint - 27.pptx 이산수학 () n-항관계 (n-ary Relations) 2011년봄학기 강원대학교컴퓨터과학전공문양세 n-ary Relations (n-항관계 ) An n-ary relation R on sets A 1,,A n, written R:A 1,,A n, is a subset R A 1 A n. (A 1,,A n 에대한 n- 항관계 R 은 A 1 A n 의부분집합이다.)

More information

,,,,,, (41) ( e f f e c t ), ( c u r r e n t ) ( p o t e n t i a l difference),, ( r e s i s t a n c e ) 2,,,,,,,, (41), (42) (42) ( 41) (Ohm s law),

,,,,,, (41) ( e f f e c t ), ( c u r r e n t ) ( p o t e n t i a l difference),, ( r e s i s t a n c e ) 2,,,,,,,, (41), (42) (42) ( 41) (Ohm s law), 1, 2, 3, 4, 5, 6 7 8 PSpice EWB,, ,,,,,, (41) ( e f f e c t ), ( c u r r e n t ) ( p o t e n t i a l difference),, ( r e s i s t a n c e ) 2,,,,,,,, (41), (42) (42) ( 41) (Ohm s law), ( ),,,, (43) 94 (44)

More information

PRO1_09E [읽기 전용]

PRO1_09E [읽기 전용] Siemens AG 1999 All rights reserved File: PRO1_09E1 Information and - ( ) 2 3 4 5 Monitor/Modify Variables" 6 7 8 9 10 11 CPU 12 Stop 13 (Forcing) 14 (1) 15 (2) 16 : 17 : Stop 18 : 19 : (Forcing) 20 :

More information