代码搜索:sql
找到约 10,000 项符合「sql」的源代码
代码结果 10,000
www.eeworm.com/read/334812/3362556
sql mysql.sql
drop database if exists hiexample;
create database hiexample;
grant all privileges on olat.* to test@"%" identified by "test";
grant all privileges on olat.* to test@localhost identified by "test";
www.eeworm.com/read/334790/3363090
sql mysqlscripts.sql
create database employees;
use employees;
create table employees
(
username varchar(15) not null primary key,
password varchar(15) not null,
roleid integer not null,
name varchar(30
www.eeworm.com/read/334646/3364393
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.')
www.eeworm.com/read/334646/3364395
sql books.sql
CREATE TABLE Books (Title CHAR(60), ISBN CHAR(13), Publisher_Id CHAR(6), Price DECIMAL(10,2))
INSERT INTO Books VALUES ('A Guide to the SQL Standard', '0-201-96426-0', '0201', '47.95')
INSERT INTO B
www.eeworm.com/read/334646/3364396
sql publishers.sql
CREATE TABLE Publishers (Publisher_Id CHAR(6), Name CHAR(30), URL CHAR(80))
INSERT INTO Publishers VALUES ('0201', 'Addison-Wesley', 'www.aw-bc.com')
INSERT INTO Publishers VALUES ('0471', 'John Wil
www.eeworm.com/read/334646/3364398
sql booksauthors.sql
CREATE TABLE BooksAuthors (ISBN CHAR(13), Author_Id CHAR(4), Seq_No INT)
INSERT INTO BooksAuthors VALUES ('0-201-96426-0', 'DATE', 1)
INSERT INTO BooksAuthors VALUES ('0-201-96426-0', 'DARW', 2)
IN
www.eeworm.com/read/334267/3369575
69sql˴
select top 20 * from tb_brand where jc like '%z%' order by id
select * from tb_brand
select min(id) from select * from tb_brand where jc like '%z%'
select * from tb_kucun
select * from t
www.eeworm.com/read/334095/3374993
java sql.java
/*
* Created on 2004-12-10
*
* To change the template for this generated file go to
* Window>Preferences>Java>Code Generation>Code and Comments
*/
package com.bwm.string;
/**