본문 바로가기
728x90
반응형

분류 전체보기195

워렌버핏 - 자사주 매입 종료|주식 고평가 https://www.youtube.com/watch?v=ri1aiXqPWeI Well Omaha's Warren Buffett suggests his stock is too expensive.  오마하의 워렌 버핏이 자사 주식이 너무 비싸다고 시사했습니다. Berkshire Hathaway has more than $325 billion in cash on hand.  버크셔 해서웨이는 3,250억 달러 이상의 현금을 보유하고 있습니다. But according to Securities and Exchange Commission filings, the company did not buy back any of its own shares in the third quarter.  그러나 증권거래위원회(SEC.. 2024. 11. 18.
[Gradle] build.gradle 에서 maven insecure protocol 설정 Could not set unknown property 'allowInsecureProtocol' for object of type org.gradle.api.internal.artifacts.repositories.DefaultMavenArtifactRepository. maven. uri 설정 시 https 가 아닌 http 를 사용 할 경우 gradle 7.x 에서는 아래 설정을 추가해 주면 됩니다. repositories {     mavenCentral()          maven {         url = uri("http://nexus.xxxxx.com/repository/snapshots")         allowInsecureProtocol = true     }          m.. 2024. 11. 18.
[MySQL] WHERE BETWEEN 날짜 범위, 조회, 포함 사용방법 SELECT * FROM 테이블명 WHERE 컬럼명 BETWEEN 시작범위 AND 종료범위 조회 조건으로 9월 1일부터 9월 26일까지의 데이터를 조회해보겠습니다. //아래 조건으로 조회시 9월 26일 데이터는 포함되지 않습니다. SELECT * FROM test WHERE reg_dt BETWEEN '2022-09-01' and '2022-09-26' SELECT * FROM test WHERE reg_dt BETWEEN '2022-09-01 00:00:00' and '2022-09-26 23:59:59' 시작 범위와 종료 범위는 변경하지  않고 AND에 시간 조회 구문을 추가했습니다. //시간으로 조회  SELECT * FROM test WHERE reg_dt BETWEEN '2022-09-.. 2024. 11. 18.
Mysql 버전 확인 $ sudo mysql Welcome to the MariaDB monitor.  Commands end with ; or \g. Your MariaDB connection id is 36 Server version: 10.11.8-MariaDB-0ubuntu0.24.04.1 Ubuntu 24.04 Copyright (c) 2000, 2018, Oracle, MariaDB Corporation Ab and others. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. MariaDB [(none)]> select version(); +----------------------------------+ | version.. 2024. 11. 18.
728x90
반응형