본문 바로가기

문법3

*매우중요 javascript - concat, includes, indexOf, reverse, slice, splice #javascript #1concat - merge arrays 1)기본준비 let A = [‘a’,’b’]; let B = [‘c’, ‘d’]; 2)concat이용하여 merge A.concat(B) 3)결과 A [‘a’,’b’,’c’,’d’] #2includes - look for a value 1) #1의 array가 들어있는 A리스트를 그대로 활용하자면 A.includes(‘b’); 2)결과 true python의 in과 같은 기능을 한다. #3indexOf- just like string.indexOf *내가 찾고자 하는 값이 있다면 몇번 인덱스에 있는지, 없다면 -1을 출력해준다. #1의 A리스트를 다시 활용하면 1) A.indexOf(‘c’) 결과 2 2) A.indexOf(‘g’) 결과 -.. 2022. 12. 3.
*매우중요 MYSQL 문제풀이 - 테이블생성 (기본문법 보완필요) ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the ri ght syntax to use near '“employed”, # 문제 Define an Employees table, with the following fields id - number(automatically increments), mandatory, primary key last_name - text, mandatory first_name - text, mandatory middle_name - text, not mandatory age - number mandatory current_status - text, mandatory, defaults to 'employed' # 내 답안 CREATE TABLE employees ( id INT NOT NULL AUTO_INCREMENT, last_name VARCHAR(30) NOT NULL, first_name .. 2022. 9. 22.
SQL 문장 작성 실수 기본적으로 현재 강의로써 배우고 있는 SQL의 강의중 LIKE 파트에 관한 내용이 있었다. #1 테이블 내용 +----+--------+------------+------+------+------------------+------------------+ | id | name | birthday | age | sex | job_title | agency | +----+--------+------------+------+------+------------------+------------------+ | 1 | 아이유 | 1993-05-16 | 29 | F | 가수, 탤런트 | EDAM엔터테인먼트 | | 2 | 이미주 | 1994-09-23 | 28 | F | 가수 | 울림엔터테인먼트 | | 3 | 송강 |.. 2022. 6. 25.