iT邦幫忙

一級屠豬士 的所有回答 650

Mysql 的錯誤訊息中文化

https://dev.mysql.com/doc/refman/8.0/en/error-message-language.html By default,...

2021-06-20 ‧ 由 ckp6250 提問

mysql的drop table沒反應?

SHOW PROCESSLIST; 看有哪些正在跑的,跟你想drop 的 table 有關的. https://dev.mysql.com/doc/refman...

2021-06-17 ‧ 由 jerry168 提問

C++求解

藉由這個問題,來介紹 flip flop operator , 使用 Python 來介紹. pip3 install flip-flop-operator 安...

2021-06-16 ‧ 由 nama 提問

postgresql匯入.sql

https://www.postgresql.org/docs/current/app-psql.html1.在 OS Shell 下呼叫 psql 執行 fi...

2021-06-16 ‧ 由 turkeylin 提問

SQL 依時間排序 連續資料的分組

with t0(id, dtime, no) as ( select row_number() over(order by dtime, no) ,...

2021-06-07 ‧ 由 hichu314 提問

SQL 語法不知道怎下?

create table ithelp210604 ( id int not null auto_increment primary key , user_...

2021-06-04 ‧ 由 t628x7600 提問

基本python 輸出入問題

一般來說,比較推薦使用 絕對路徑 .你用 python xxx.py 的方式來執行程式, 你的程式裡面path = 'a.txt'但是不確保是 xxx.py 的...

2021-05-22 ‧ 由 sja956 提問

把123變321的程式,很EZ,不耗很多時間

>>> x = [1,2,3,4] >>> x[::-1] [4, 3, 2, 1] 這是Python List 基本的功...

2021-05-22 ‧ 由 Itzy 提問

[已解決]mysql_config_editor: command not found 沒這個指令

MariaDB 與 MySQL 是不完全相容的. https://mariadb.com/kb/en/mysql_config_editor-compatibi...

2021-05-15 ‧ 由 通通 提問