mysql 常用sql语句

来源:互联网 发布:毕业论文的数据分析 编辑:程序博客网 时间:2024/06/07 03:19
 1、create table t_photos(id tinyint unsigned auto_increment primary key,
 product_id tinyint unsigned,
 img mediumblob,
 foreign key(product_id) references t_products(id));