摘要:
delimiter $ drop function if exists f1 $ mysql> create function f1(l1 int,l2 int) returns int begin declare mun int; set mun = l1 + l2; return(mun); e 阅读全文
摘要:
delimiter $ drop trigger if exists insert_color $ create trigger insert_color before insert on color for each row begin insert into co(cols) values(ne 阅读全文
摘要:
#!/usr/bin/env python # -*- coding:utf-8 -*- import pymysql import time # 创建连接 conn = pymysql.connect(host='127.0.0.1', port=3306, user='root', passwd='', db='log') # 创建游标 设置光标用字典的格式获取 默认... 阅读全文
摘要:
procedures 程序 exists 存在 declare 声明 default 默认 delimiter 定界符 向服务器说明以什么结束 begin 开始 then 然后 delimiter $ create procedure ttww() begin declare d1 int defa 阅读全文
摘要:
阅读全文