【Mysql】insert
时间:2014-03-29 23:04:20
收藏:0
阅读:589
The INSERT
privilege enables rows to be
inserted into tables in a database
create database Susake; use Susake; create table Test(a int, b int); insert into Test values(1, 2);
原文:http://www.cnblogs.com/Cxx-Code/p/3632894.html
评论(0)