代码搜索:sql
找到约 10,000 项符合「sql」的源代码
代码结果 10,000
www.eeworm.com/read/430682/1918285
pas sql.pas
unit Sql;
interface
uses
{$IFDEF FPC}
LResources,
{$ENDIF}
Classes, SysUtils,
{$IFNDEF LINUX}
Windows, Menus, ImgList, StdCtrls, ComCtrls, Buttons, ExtCtrls, Graphics,
Controls, F
www.eeworm.com/read/430682/1918365
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/430682/1918366
pas sql.pas
unit Sql;
interface
uses
{$IFDEF FPC}
LResources,
{$ENDIF}
Classes, SysUtils,
{$IFNDEF LINUX}
Windows, Menus, ImgList, StdCtrls, ComCtrls, Buttons, ExtCtrls, Graphics,
Controls, F
www.eeworm.com/read/430378/1931193
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/430378/1931214
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/430378/1931250
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/429988/1943272
sql data.sql
insert into staff(id,name,email,loginid,password)values(seq_staff.nextval,'admin','','admin','admin');
insert into staff(id,name,email,loginid,password)values(seq_staff.nextval,'lz','','lz','lz');
www.eeworm.com/read/429794/1945591
sql book.sql
#创建数据库jnestore
create database jnestore;
use jnestore;
#创建存储用户信息的数据表account
create table account (
userid char (20) not null,
password char(20) not null,
email char(50),
realname char(50),
www.eeworm.com/read/429794/1945754
sql jnestore.sql
create table catalog_items (sku char(25),name char(50),description varchar(200),price float);
insert into catalog_items values ('d01','java bible','A java book published by PS',12.1);
insert into c