1. Data extract - SQL SELECT * FROM history_dt LIMIT 5; - Pandas tips.head() 2. Filter data - SQL SELECT t1.STK_CD, t1.DT, t1.O_PRC FROM history_dt t1 WHERE STK_CD='000020' LIMIT 5; - Pandas tips.query("day=='Thur'").head() or tips.loc[tips['day']=='Thur'].head() or tips[tips['day']=='Thur'].head() 3. Sort data 1) - SQL SELECT t1.STK_CD, t1.DT, t1.O_PRC FROM history_dt t1 WHERE STK_CD='005930' O..