5시간코딩

[문자함수] employees 테이블에서 last_name에 a가 2글자 이상 있는 사원의 employee_id, last_name 을 출력하세요. 본문

문제풀기/테이블 조작 관련 문제

[문자함수] employees 테이블에서 last_name에 a가 2글자 이상 있는 사원의 employee_id, last_name 을 출력하세요.

5시간코딩 2019. 4. 5. 00:08

1. oracle

select employee_id, last_name
from employees
where last_name like '%a%a%';

 

 

 

 

2. r

1)

library(stringr) 

emp <- read.csv("c:/data/employees.csv",header=T,stringsAsFactors = F)
res<-NULL
for (i in emp[3]){
  res=cbind(res,str_count(i,'a'))
}
res <- res>=2
emp[res,c('EMPLOYEE_ID','LAST_NAME')]

2)

subset 생략

3)

dplyr 생략

4)

sqldf 생략

 

 

 

 

3. python

1)

read_csv 생략

2)

import pandas as pd
df = pd.read_csv("c:/data/employees.csv")

df[['EMPLOYEE_ID','LAST_NAME']][[i.count('a')>=2 for i in df['LAST_NAME']]]