代码搜索:sql
找到约 10,000 项符合「sql」的源代码
代码结果 10,000
www.eeworm.com/read/395949/2426373
js sql.js
/*
* CodePress regular expressions for SQL syntax highlighting
* By Merlin Moncure
*/
// SQL
Language.syntax = [
{ input : /\'(.*?)(\')/g, output : '\'$1$2' }, // strings single q
www.eeworm.com/read/395620/2434585
sql taobao.sql
/*==============================================================*/
/* DBMS name: Microsoft SQL Server 2000 */
/* Created on: 2008-8-2 19:02:14
www.eeworm.com/read/395296/2442251
pri sql.pri
# Qt compat module
HEADERS += sql/q3sqlfieldinfo.h \
sql/q3sqlrecordinfo.h \
sql/q3datatable.h \
sql/q3dataview.h \
sql/q3sqlcurso
www.eeworm.com/read/395092/2449583
sql bookmanage.sql
USE master
GO
CREATE DATABASE BookManage
ON
PRIMARY ( NAME = Bm1,
FILENAME = 'C:\Program Files\Microsoft SQL Server\MSSQL\Data\BmData1.mdf',
SIZE = 10MB,
MAXSIZE = 200,
www.eeworm.com/read/395072/2450119
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/395072/2450140
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/395072/2450176
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)