개발자 도구. PHP 관련 개발자 도구. 1. Sublime Text - http://www.sublimetext.com/ 장점 : 무료 2. Atom https://atom.io/ 단점 : 느리다. 3. VS 코드(Visual Studio Code) https://code.visualstudio.com/ 4. PHP Storm https://www.jetbrains.com/phpstorm/ 5. Aptana http://www.aptana.com/ Programming/php 2018.01.29
mysql profiling PROFILE툴을 사용하는 것보다는 console 에서 작업하는것을 추천합니다. 이유는 show profiles 시에 DBMS입장에서 실행된 쿼리를 가지는데, 프로파일할 쿼리보다 툴 자체에서 실행된 쿼리 들이 많아 보는데 짜증날 수 있음.1. 설정(1) 확인profiling 설정을 확인합니다. 0이면 OFF, 1이면 ONMariaDB [employees]> select @@profiling -> ;+-------------+| @@profiling |+-------------+| 0 |+-------------+1 row in set (0.00 sec) (2) 설정set profiling = 1;MariaDB [employees]> select @@profiling;+-------------+| @@pr.. Database/maria 2018.01.29
window functions 윈도우 함수. 윈도우 함수 참조 : https://mariadb.com/kb/en/library/window-functions-overview/ Syntaxfunction (expression) OVER ( [ PARTITION BY expression_list ] [ ORDER BY order_list [ frame_clause ] ] ) function: A valid window function expression_list: expression | column_name [, expr_list ] order_list: expression | column_name [ ASC | DESC ] [, ... ] frame_clause:The following functions (also called aggregate fu.. Database/maria 2018.01.26
macOS 에 maria db 설치 및 test db 생성 macOS 에 maria db 설치 및 test db 생성. 0. brew 설치http://nerdroom.tistory.com/13 show databases;+--------------------+| Database |+--------------------+ | employees |+--------------------+ (3) 데이터 건수mysql -u root -p -t < test_employees_sha.sql+----------------------+| INFO |+----------------------+| TESTING INSTALLATION |+----------------------++--------------+------------------+----------------------.. Database/maria 2018.01.26