代码搜索:sql
找到约 10,000 项符合「sql」的源代码
代码结果 10,000
www.eeworm.com/read/224860/4802316
sql mysql.sql
CREATE DATABASE tools;
GRANT ALL ON tools.* TO tools@localhost IDENTIFIED BY "tools";
www.eeworm.com/read/224860/4802360
sql ddl.sql
CREATE DATABASE orders;
GRANT ALL ON orders.* to orders@localhost IDENTIFIED BY "orders";
USE orders;
www.eeworm.com/read/224860/4802377
sql mysql.sql
CREATE DATABASE message;
GRANT ALL ON message.* TO message@localhost IDENTIFIED BY "message";
USE message;
CREATE TABLE userinfo (
id VARCHAR(32) NOT NULL,
name VARCHAR(32) NOT NULL,
www.eeworm.com/read/224860/4802378
sql oracle.sql
CREATE TABLESPACE message
DATAFILE '/opt/oracle/oradata/surecomp/message01.dbf' size 200M
EXTENT MANAGEMENT local;
CREATE USER message IDENTIFIED BY message
DEFAULT TABLESPACE message;
GRANT
www.eeworm.com/read/224860/4802410
sql ddl.sql
CREATE DATABASE library;
GRANT ALL ON library.* to library@localhost IDENTIFIED BY "library";
USE library;
create table CATEGORY (
id varchar(32) primary key,
name varchar(32) not null,
www.eeworm.com/read/224860/4802467
sql init.sql
delete from function_action;
delete from action;
delete from role_function;
delete from functions;
delete from roles;
insert into roles values( '1', 'admin', '管理员' );
insert into roles value
www.eeworm.com/read/224303/4805084
sql tables.sql
drop table vod_playactor_category;
create table vod_playactor_category (
id int auto_increment primary key not null,
category_name varchar(50)
);
drop table vod_playactor;
create table
www.eeworm.com/read/224303/4805123
sql tables.sql
drop table vod_playactor_category;
create table vod_playactor_category (
id int auto_increment primary key not null,
category_name varchar(50)
);
drop table vod_playactor;
create table
www.eeworm.com/read/224251/4805428
sql hdwiki.sql
-- Table: wiki_activate
CREATE TABLE wiki_activate (
activate_id int(12) unsigned auto_increment NOT NULL,
user_id int(12) unsigned NOT NULL,
activate_str varchar(256) NOT NULL,
state t