sql 숫자 추출
[SQL] postgresql 숫자 포함한 , 숫자 포함하지 않은 행 추출
숫자가 하나라도 들어있으면 추출 select * from schema.tablename where "date" ~ '[0-9]+' 숫자가 하나도 들어있지 않으면 추출 select * from schema.tablename where "date" !~ '[0-9]+'
숫자가 하나라도 들어있으면 추출 select * from schema.tablename where "date" ~ '[0-9]+' 숫자가 하나도 들어있지 않으면 추출 select * from schema.tablename where "date" !~ '[0-9]+'