[mysql]특정DB 전체 테이블 삭제
# DataBase/Mysql(MariaDB)2022. 10. 11. 17:57[mysql]특정DB 전체 테이블 삭제

SET @tables = NULL; SELECT GROUP_CONCAT(table_schema, '.', table_name) INTO @tables FROM information_schema.tables WHERE table_schema = '[DB명]'; SET @tables = CONCAT('DROP TABLE ', @tables); PREPARE stmt FROM @tables; EXECUTE stmt; DEALLOCATE PREPARE stmt; 특정 테이블만 삭제해야할 경우는 조건문에 아래와 같이 추가하면됩니다. AND table_name LIKE '%[테이블명]%'; result SET @tables = NULL > OK > Time: 0.003s SELECT GROUP_CONCAT(tabl..

[파이썬]네이버 데이터랩 추출 및 엑셀 파일 저장(xlsx)
# Script/Python2022. 10. 11. 07:42[파이썬]네이버 데이터랩 추출 및 엑셀 파일 저장(xlsx)

from selenium import webdriver from selenium.webdriver.chrome.options import Options from selenium.webdriver.common.action_chains import ActionChains import chromedriver_autoinstaller import os import requests import warnings import shutil import subprocess import time warnings.filterwarnings('ignore') try: shutil.rmtree(r"c:\chrometemp") # 쿠키 / 캐쉬파일 삭제 except FileNotFoundError: pass subprocess...

[파이썬]셀레니움 크롬 드라이버 자동 설치 for windows
# Script/Python2022. 10. 10. 15:22[파이썬]셀레니움 크롬 드라이버 자동 설치 for windows

from selenium import webdriver import chromedriver_autoinstaller import os # Check if chrome driver is installed or not chrome_ver = chromedriver_autoinstaller.get_chrome_version().split('.')[0] driver_path = f'./{chrome_ver}/chromedriver.exe' if os.path.exists(driver_path): print(f"chrom driver is insatlled: {driver_path}") else: print(f"install the chrome driver(ver: {chrome_ver})") chromedriv..

워드프레스 설치
# Web&WAS2022. 10. 10. 10:45워드프레스 설치

다운로드 https://ko.wordpress.org/download/#download-install Download Download WordPress today, and get started on creating your website with one of the most powerful, popular, and customizable platforms in the world. ko.wordpress.org [daraksharavim.tistory.com]$ wget https://ko.wordpress.org/latest-ko_KR.tar.gz Requirements We recommend servers running version 7.4 or greater of PHP and MySQL versio..

[CPU]INTEL i7-2600 성능
# Life/IT2022. 10. 8. 13:09[CPU]INTEL i7-2600 성능

2010년에 출시한 샌디할배 성능은 라이젠5 2400g보다 떨어진다.. 굿바이 cpu-z벤치 cpu온도(쿨러 : 딥쿨 갬맥gte) Intel Core i7-2600 Benchmarks - Geekbench Browser Intel Core i7-2600 Benchmarks - Geekbench Browser browser.geekbench.com

image