最近重複的工作做一些改進
如每個月重複執行 SQL 內容
需要更快、還要更方便設定方法
MySQL set variable
1 | set @_id = xxx; |
MySQL :: MySQL 8.0 Reference Manual :: 13.7.6.1 SET Syntax for Variable Assignment
有用過,不能用在 CREATE TABLE ...
vscode Blueprint
不管任何程式都可以使用
詳細看裡面的測試圖片就可以了解怎麼使用
reesemclean/blueprint: Create files and folders of files from templates in Visual Studio Code
./blueprint-templates/測試demo/nametest.sql1
2
3
4
5
6
7
8
9CREATE TABLE `xxxx`.`{{ $table }}` (
`id` int(11) NOT NULL auto_increment,
`s` varchar(10) NOT NULL,
`s2` varchar(10) NOT NULL,
`user_number` varchar(100) NOT NULL,
PRIMARY KEY (`id`)
KEY `s` (`s`),
KEY `s2` (`s2`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='{{$表格註解}}' AUTO_INCREMENT=1 ;
其他小記
有一個 Blueprint 跟 API Blueprint 沒有關係
相關教學連結
Kewang 的資訊進化論 - 貼文