代码搜索:sql
找到约 10,000 项符合「sql」的源代码
代码结果 10,000
www.eeworm.com/read/450315/7485766
txt sql(1).txt
>> ChinaUnix.net > SCO
SQL(1)
作者:wdong1015 发表时间:2002/12/15 10:33am
1、建表格:
create table table_name(
column1 datatype [not null] [not null primary key],
column2 datat
www.eeworm.com/read/450289/7486129
sql device.sql
CREATE TABLE tbl_user(
user_id int NOT NULL PRIMARY KEY DEFAULT 0,
username varchar(20) NULL DEFAULT '',
password varchar(20) NULL DEFAULT '',
truename varchar(20) NULL DEFAULT '',
priv
www.eeworm.com/read/449997/7491821
sql hotel.sql
www.eeworm.com/read/449724/7497827
sql book.sql
-- phpMyAdmin SQL Dump
-- version 2.6.2-pl1
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Jun 05, 2006 at 02:19 AM
-- Server version: 4.1.12
-- PHP Version: 5.0.4
--
-- Data
www.eeworm.com/read/449528/7501415
sql database.sql
-- --------------------------------------------------------
--
-- Tabel structuur voor tabel `[auto]`
--
CREATE TABLE `[auto]` (
`id` int(255) NOT NULL auto_increment,
`soort` int(3)
www.eeworm.com/read/449455/7505034
sql da.sql
www.eeworm.com/read/449455/7505098
sql da.sql
www.eeworm.com/read/449432/7505365
sql 2.sql
if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[order]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)
drop table [dbo].[order]
GO
CREATE TABLE [dbo].[order1] (
[orderno] [n
www.eeworm.com/read/449432/7505366
sql 1.sql
USE BSQFlow
if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[user1]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)
drop table [dbo].[user]
GO
CREATE TABLE [dbo].[user] (
[I
www.eeworm.com/read/449432/7505367
sql 4.sql
if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[CancelProduct]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)
drop table [dbo].[CancelProduct]
GO
CREATE TABLE [dbo].[CancelPr