代码搜索:sql

找到约 10,000 项符合「sql」的源代码

代码结果 10,000
www.eeworm.com/read/363385/2918877

sql 08.sql

-- 创建用户表空间product CREATE TABLESPACE "PRODUCT" LOGGING DATAFILE 'E:\ORACLE\ORADATA\TEST\PRODUCT.ora' SIZE 10M EXTENT MANAGEMENT LOCAL SEGMENT SPACE MANAGEMENT AUTO; -- 创建用户product
www.eeworm.com/read/363385/2918878

sql photo.sql

-- 创建用户表空间photo CREATE TABLESPACE "PHOTO" LOGGING DATAFILE 'E:\ORACLE\ORADATA\TEST\PHOTO.ora' SIZE 10M EXTENT MANAGEMENT LOCAL SEGMENT SPACE MANAGEMENT AUTO; -- 创建用户photo CREATE
www.eeworm.com/read/363385/2918879

sql shopping.sql

-- 创建用户表空间SHOPPING CREATE TABLESPACE "SHOPPING" LOGGING DATAFILE 'E:\ORACLE\ORADATA\TEST\SHOPPING.ora' SIZE 10M EXTENT MANAGEMENT LOCAL SEGMENT SPACE MANAGEMENT AUTO; -- 创建用户shop
www.eeworm.com/read/363385/2918880

sql msgboard.sql

-- 创建用户表空间msgboard CREATE TABLESPACE "MSGBOARD" LOGGING DATAFILE 'E:\ORACLE\ORADATA\TEST\MSGBOARD.ora' SIZE 10M EXTENT MANAGEMENT LOCAL SEGMENT SPACE MANAGEMENT AUTO; -- 创建用户MSGB
www.eeworm.com/read/363284/2921943

sql redmoonoa.sql

SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT; SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS; SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION; SET NAMES utf8; /*!40014 SET @
www.eeworm.com/read/363057/2923113

sql guestbook.sql

use bookstore; create table guestbook( gst_id INT AUTO_INCREMENT not null primary key, gst_user VARCHAR(10) not null, gst_title VARCHAR(100) not null, gst_content TEXT, gst
www.eeworm.com/read/363057/2923134

sql logs.sql

use bookstore; create table logs( log_date DATETIME not null, log_logger VARCHAR(20) not null, log_level VARCHAR(5) not null, log_msg VARCHAR(200) not null);
www.eeworm.com/read/363057/2923170

sql bookstore.sql

use bookstore; create table bookinfo(id INT not null primary key,title VARCHAR(50) not null,author VARCHAR(50) not null,bookconcern VARCHAR(100) not null,publish_date DATE not null,price FLOAT(4,2)
www.eeworm.com/read/362877/2926387

tld sql.tld

www.eeworm.com/read/362375/2934271

sql authors.sql

CREATE TABLE Authors (Author_Id CHAR(4), Name CHAR(25), Fname CHAR(25)) INSERT INTO Authors VALUES ('ALEX', 'Alexander', 'Christopher') INSERT INTO Authors VALUES ('BROO', 'Brooks', 'Frederick P.')