【程式碼真的很難嗎?】
CREATE TABLE A999_OUTPUT_傑出榮耀
SELECT
健保資料庫工作坊.同學 AS ID,
FROM
健保資料庫工作坊
WHERE
想法 = ‘EXCELLENT’ AS ‘PUBLISH’;
GROUP BY
ID
當初寄送講義的時候,打開檔案時看到這樣的程式碼,對於完全沒有學過 MySQL 語法的人來說,就像無字天書一般,而蔡瑋琳醫師卻可以在短短一堂課的內容中,把這樣的知識輸入到你的腦袋,而且教你更多。
雖然課前自己有先 Google 過講義中所有的語法,但也僅於看得懂的程度,但上完課後,被重新醍醐灌頂過一次,會有一種我好像也有能力可以寫程式碼的感覺。
【新思惟團隊總是站在時代的前端】
新的健保資料庫課程,可體會出蔡依橙校長與新思惟團隊的苦心。
過去的資料庫比較單純,所以生存曲線就是最重要且基本的元素。而這次,為了因應加值中心將會有更大量的資料庫可連結,感覺著重在資料表與資料表間的連結及處理,上課就是教我們,如何把兒童和父母的資料串連在一起,進而分析各細項資料表的內容。
【佛心來著的課程】
一天上課的內容,我覺得最有感觸之處是吳昭慶醫師所傳遞的 proxy 概念,在整個 theory (idea)、data (NHIRD)、composition 論文產線架構中,如何找到最棒的 proxy,去代表你所沒有的 lab 或 image、甚至是 disease,去說服 reviewer 相信你的 proxy 是合理且正確的,這大概是各專科醫師在努力於自己領域後,最能表現出價值的地方。
以上的流程,我想,越來越熟練後,論文最後自然可以 0 到 1、1 到 10、10 到 100,而這,也是我所說「佛心來著」的原因。
--
11/12 (六)《健保資料庫工作坊》最後 8 個名額,歡迎一起來開啟健保資料庫之門!
➡ http://nhird2014.innovarad.tw/event/
同時也有3部Youtube影片,追蹤數超過12萬的網紅prasertcbs,也在其Youtube影片中提到,-- command create user alpha with encrypted password '1234'; \c demo grant select on table public.benjerry to alpha; grant select, insert, update, del...
「mysql create table select」的推薦目錄:
- 關於mysql create table select 在 新思惟國際 Facebook 的最讚貼文
- 關於mysql create table select 在 prasertcbs Youtube 的最讚貼文
- 關於mysql create table select 在 prasertcbs Youtube 的精選貼文
- 關於mysql create table select 在 prasertcbs Youtube 的最佳貼文
- 關於mysql create table select 在 MySQL Create Table as SELECT - Stack Overflow 的評價
- 關於mysql create table select 在 MySQL "CREATE TABLE LIKE" include triggers - DBA ... 的評價
- 關於mysql create table select 在 MySQL Tutorial Create table insert and select in workbench 的評價
mysql create table select 在 prasertcbs Youtube 的最讚貼文
-- command
create user alpha with encrypted password '1234';
\c demo
grant select on table public.benjerry to alpha;
grant select, insert, update, delete on table public.menu to alpha;
grant select, insert, update, delete on all tables in schema public to alpha;
revoke all privileges on all tables in schema public from alpha;
grant all privileges on all tables in schema public to alpha;
ดาวน์โหลด saturn database (saturn.tar) ได้ที่ ► http://bit.ly/2E2uY7a
เชิญสมัครเป็นสมาชิกของช่องนี้ได้ที่ ► https://www.youtube.com/subscription_center?add_user=prasertcbs
สอน PostgreSQL ► https://www.youtube.com/playlist?list=PLoTScYm9O0GGi_NqmIu43B-PsxA0wtnyH
สอน MySQL ► https://www.youtube.com/playlist?list=PLoTScYm9O0GFmJDsZipFCrY6L-0RrBYLT
สอน Microsoft SQL Server 2012, 2014, 2016, 2017 ► https://www.youtube.com/playlist?list=PLoTScYm9O0GH8gYuxpp-jqu5Blc7KbQVn
สอน SQLite ► https://www.youtube.com/playlist?list=PLoTScYm9O0GHjYJA4pfG38M5BcrWKf5s2
สอน SQL สำหรับ Data Science ► https://www.youtube.com/playlist?list=PLoTScYm9O0GGq8M6HO8xrpkaRhvEBsQhw
การเชื่อมต่อกับฐานข้อมูล (SQL Server, MySQL, SQLite) ด้วย Python ► https://www.youtube.com/playlist?list=PLoTScYm9O0GEdZtHwU3t9k3dBAlxYoq59
การใช้ Excel ในการทำงานร่วมกับกับฐานข้อมูล (SQL Server, MySQL, Access) ► https://www.youtube.com/playlist?list=PLoTScYm9O0GGA2sSqNRSXlw0OYuCfDwYk
#prasertcbs_SQL #prasertcbs #prasertcbs_PostgreSQL
mysql create table select 在 prasertcbs Youtube 的精選貼文
script สำหรับสร้างตาราง sales;
drop table if exists sales;
create table sales (
branch text,
dt date,
revenue int,
primary key (branch, dt)
);
insert into sales
select 'bangkok' branch, dt::date, (10000 + random() * 20000)::int revenue
from generate_series('2018-01-01'::date, '2019-12-31'::date, '1 day') dt
UNION
select 'phuket' branch, dt::date, (10000 + random() * 10000)::int revenue
from generate_series('2018-01-01'::date, '2019-12-31'::date, '1 day') dt
order by branch, dt;
ดาวน์โหลด PostgreSQL script ไฟล์ที่ใช้ในคลิปได้ที่ ► http://bit.ly/2mdDVmm
ดาวน์โหลด saturn database (saturn.tar) ได้ที่ ► http://bit.ly/2E2uY7a
เชิญสมัครเป็นสมาชิกของช่องนี้ได้ที่ ► https://www.youtube.com/subscription_center?add_user=prasertcbs
สอน PostgreSQL ► https://www.youtube.com/playlist?list=PLoTScYm9O0GGi_NqmIu43B-PsxA0wtnyH
สอน MySQL ► https://www.youtube.com/playlist?list=PLoTScYm9O0GFmJDsZipFCrY6L-0RrBYLT
สอน Microsoft SQL Server 2012, 2014, 2016, 2017 ► https://www.youtube.com/playlist?list=PLoTScYm9O0GH8gYuxpp-jqu5Blc7KbQVn
สอน SQLite ► https://www.youtube.com/playlist?list=PLoTScYm9O0GHjYJA4pfG38M5BcrWKf5s2
สอน SQL สำหรับ Data Science ► https://www.youtube.com/playlist?list=PLoTScYm9O0GGq8M6HO8xrpkaRhvEBsQhw
การเชื่อมต่อกับฐานข้อมูล (SQL Server, MySQL, SQLite) ด้วย Python ► https://www.youtube.com/playlist?list=PLoTScYm9O0GEdZtHwU3t9k3dBAlxYoq59
การใช้ Excel ในการทำงานร่วมกับกับฐานข้อมูล (SQL Server, MySQL, Access) ► https://www.youtube.com/playlist?list=PLoTScYm9O0GGA2sSqNRSXlw0OYuCfDwYk
#prasertcbs_SQL #prasertcbs #prasertcbs_PostgreSQL
mysql create table select 在 prasertcbs Youtube 的最佳貼文
เนื้อหาในตอนนี้เริ่มต้นจาก
1) การติดตั้งและใช้ pyodbc package เพื่อใช้ในการติดต่อกับฐานข้อมูลผ่าน ODBC (pip install pyodbc)
2) การติดตั้ง MySQL ODBC driver for Windows (ดาวน์โหลดได้ที่ https://dev.mysql.com/downloads/connector/odbc/)
3) ขั้นตอนการสร้าง connection string เพื่อเชื่อมต่อกับฐานข้อมูล MySQL
4) การสร้างตารางในฐานข้อมูล (CREATE TABLE)
5) การเพิ่มข้อมูลเข้าไปในตาราง (INSERT)
6) การเรียกใช้ข้อมูล (SELECT)
=== ดาวน์โหลดไฟล์ตัวอย่างได้ที่ https://goo.gl/fggdyq
เชิญสมัครเป็นสมาชิกของช่องนี้ได้ที่ https://www.youtube.com/subscription_center?add_user=prasertcbs
► สอน Python 3 การติดต่อกับฐานข้อมูล https://www.youtube.com/watch?v=2n2SLFET-GU&list=PLoTScYm9O0GEdZtHwU3t9k3dBAlxYoq59
► สอน Python https://www.youtube.com/playlist?list=PLoTScYm9O0GH4YQs9t4tf2RIYolHt_YwW
► สอน Python OOP https://www.youtube.com/playlist?list=PLoTScYm9O0GEIZzlTKPUiOqkewkWmwadW
► สอน Python GUI https://www.youtube.com/playlist?list=PLoTScYm9O0GFB1Y3cCmb9aPD5xRB1T11y
► สอน Microsoft SQL Server https://www.youtube.com/playlist?list=PLoTScYm9O0GH8gYuxpp-jqu5Blc7KbQVn
► สอน MySQL https://www.youtube.com/playlist?list=PLoTScYm9O0GFmJDsZipFCrY6L-0RrBYLT
► สอน PostgreSQL https://www.youtube.com/playlist?list=PLoTScYm9O0GGi_NqmIu43B-PsxA0wtnyH
► สอน SQLite https://www.youtube.com/playlist?list=PLoTScYm9O0GHjYJA4pfG38M5BcrWKf5s2
► การเชื่อมต่อกับฐานข้อมูล (SQL Server, MySQL, PostgreSQL, SQLite) ด้วย Python ► https://www.youtube.com/playlist?list=PLoTScYm9O0GEdZtHwU3t9k3dBAlxYoq59
#prasertcbs_SQL #prasertcbs #prasertcbs_python
mysql create table select 在 MySQL "CREATE TABLE LIKE" include triggers - DBA ... 的推薦與評價
SELECT ) - the CREATE TABLE LIKE syntax is non-standard - like so much of MySQL! MySQL's documentation argues here - that this lacuna is to ... ... <看更多>
相關內容
mysql create table select 在 MySQL Tutorial Create table insert and select in workbench 的推薦與評價
In this video we will seeHow to use MySQL.How to create table.How to insert records in the tableHow to ... ... <看更多>
mysql create table select 在 MySQL Create Table as SELECT - Stack Overflow 的推薦與評價
... <看更多>
相關內容