代码搜索:sql
找到约 10,000 项符合「sql」的源代码
代码结果 10,000
www.eeworm.com/read/333885/3379932
sql iniqq.sql
/*
创建表空间和用户
&1--用户名 &2--密码
*/
spool init.log
create user qquserzlf identified by qquserzlf;
grant dba,resource,connect,create session to qquserzlf;
connect qquserzlf/qquserzlf;
www.eeworm.com/read/333616/3383553
dfm sql.dfm
inherited SqlFrame: TSqlFrame
Width = 443
Height = 277
Align = alClient
object Splitter1: TSplitter
Left = 0
Top = 219
Width = 443
Height = 5
Cursor = crVSplit
www.eeworm.com/read/333616/3383554
pas sql.pas
unit Sql;
interface
uses
Classes, SysUtils,
{$IFNDEF LINUX}
Windows, Menus, ImgList, StdCtrls, ComCtrls, Buttons, ExtCtrls, Graphics,
Controls, Forms, Dialogs, DBCtrls, Grids, DBGrids,
www.eeworm.com/read/333616/3383611
nfm sql.nfm
inherited SqlFrame: TSqlFrame
Width = 443
Height = 277
Align = alClient
object Splitter1: TSplitter
Left = 0
Top = 219
Width = 443
Height = 5
Cursor = crVSplit
www.eeworm.com/read/333616/3383612
pas sql.pas
unit Sql;
interface
uses
Classes, SysUtils,
{$IFNDEF LINUX}
Windows, Menus, ImgList, StdCtrls, ComCtrls, Buttons, ExtCtrls, Graphics,
Controls, Forms, Dialogs, DBCtrls, Grids, DBGrids,
www.eeworm.com/read/333345/3388257
sql hrmanager.sql
CREATE DATABASE [HRManager1]
GO
USE [HRManager1]
GO
/****** 对象: Table [dbo].[City] 脚本日期: 10/21/2006 16:02:45 ******/
CREATE TABLE [dbo].[City](
[CityID] [int] NOT NULL,
[CityName] [nv
www.eeworm.com/read/333088/3390699
sql create.sql
CREATE TABLE `jbb_answer_notify` (
`id_topic` bigint(20) NOT NULL default '0',
`id_user` bigint(20) NOT NULL default '0',
PRIMARY KEY (`id_topic`,`id_user`),
KEY `jbb_answer_notify_ind1_f
www.eeworm.com/read/333088/3390704
sql create.sql
-- TT 2006-10-09: drop table jbb_answer_notify
DROP TABLE jbb_answer_notify;
DROP TABLE jbb_badwords;
DROP TABLE jbb_category;
DROP TABLE jbb_forum;
-- TT 2006-10-09: drop table jbb_forum_top_use
www.eeworm.com/read/333088/3390709
sql create.sql
CREATE TABLE jbb_badwords (
id_badword bigint DEFAULT 0 NOT NULL,
word character varying(50),
replacement character varying(50)
) WITHOUT OIDS;
--
-- Structure for table jbb_category
www.eeworm.com/read/333030/3390934
sql bbs.sql
--DROP TABLE [comment];
--DROP TABLE [topic];
--DROP TABLE [manager];
--DROP TABLE [usr];
--DROP TABLE [forum];
--GO
-- 建立用户表
CREATE TABLE [usr] (
[id] [int] IDENTITY (1, 1) NOT NULL,
[us