代码搜索:sql
找到约 10,000 项符合「sql」的源代码
代码结果 10,000
www.eeworm.com/read/189857/5191424
sql delete.sql
DROP TABLE CUSTOMERBEANSUBSCRIPTIONBEAN;
DROP TABLE CUSTOMER_ADDRESS;
DROP TABLE CUSTOMER;
DROP TABLE SUBSCRIPTION;
DROP TABLE ADDRESS;
www.eeworm.com/read/189857/5191471
sql create.sql
CREATE TABLE customer (
customerid VARCHAR(8) NOT NULL,
lastname VARCHAR(24) NOT NULL,
firstname VARCHAR(24) NOT NULL,
primary key (customerid)
);
INSERT INTO customer VALUES('SUN00001', 'LastNam
www.eeworm.com/read/188906/5205087
sql task.sql
# MySQL-Front 3.2 (Build 10.27)
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_
www.eeworm.com/read/188906/5205190
sql 8.2.2.sql
create table items (
id int not null auto_increment,
title varchar(50) not null,
primary key (id)
);
www.eeworm.com/read/188906/5205236
sql 8.2.3.sql
create table items (
id int not null auto_increment,
title varchar(50) not null,
primary key (id)
);
create table categories (
id int not null auto_increment,
name varchar(200) not
www.eeworm.com/read/188906/5205280
sql create.sql
drop table if exists works;
create table works (
id int unsigned not null auto_increment,
nickname char(20) not null,
sex enum('帅哥','靓妹') not null default '帅哥',
city char(20) null default
www.eeworm.com/read/188906/5205726
sql items.sql
# MySQL-Front 3.2 (Build 10.15)
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_
www.eeworm.com/read/188906/5205809
sql items.sql
# MySQL-Front 3.2 (Build 10.15)
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_