代码搜索:sql
找到约 10,000 项符合「sql」的源代码
代码结果 10,000
www.eeworm.com/read/218655/4855723
sql tables.sql
/*
SQLyog v3.62
Host - localhost : Database - hoodb
**************************************************************
Server version 4.0.16-nt
*/
create database if not exists `hoodb`;
use `h
www.eeworm.com/read/218586/4856640
sql mysql.sql
--
-- Table structure for table `tag`
--
CREATE TABLE `tag_tag` (
`tag_id` int(10) unsigned NOT NULL auto_increment,
`tag_term` varchar(64) /* BINARY */ NOT NULL default '',
www.eeworm.com/read/218586/4856808
sql mysql.sql
-- phpMyAdmin SQL Dump
-- version 2.6.4-pl4
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: May 07, 2006 at 01:26 PM
-- Server version: 5.0.16
-- PHP Version: 5.1.0
--
www.eeworm.com/read/218586/4856958
sql mysql.sql
#
# Table Structure `wp_views`
#
CREATE TABLE wp_views (
post_id bigint(20) unsigned NOT NULL default '0',
post_views bigint(20) unsigned NOT NULL default '0',
KEY post_id (post_id)
);
www.eeworm.com/read/218586/4857082
sql mysql.sql
## phpMyAdmin SQL Dump
## version 2.6.3-pl1
## http://www.phpmyadmin.net
##
## Host: localhost
## Generation Time: Nov 13, 2005 at 08:24 PM
## Server version: 4.1.13
## PHP Version: 5.1.0RC1
##
## D
www.eeworm.com/read/218586/4857431
sql tables.sql
-- SQL to create the initial tables for the MediaWiki database.
-- This is read and executed by the install script; you should
-- not have to run it by itself unless doing a manual install.
--
-- Gen
www.eeworm.com/read/218586/4857445
sql database.sql
-- SQL script to create database for wiki. This is run from
-- the installation script which replaces the variables with
-- their values from local settings.
--
DROP DATABASE IF EXISTS `{$wgDBname}`
www.eeworm.com/read/218586/4857455
sql blobs.sql
-- Blobs table for external storage
CREATE TABLE /*$wgDBprefix*/blobs (
blob_id int(8) NOT NULL AUTO_INCREMENT,
blob_text mediumtext,
PRIMARY KEY (blob_id)
) TYPE=InnoDB;
www.eeworm.com/read/218586/4857470
sql recount.sql
--
-- Recalculate the article count
--
SELECT @foo:=COUNT(*) FROM /*$wgDBprefix*/cur
WHERE cur_namespace=0 AND cur_is_redirect=0 AND cur_text like '%[[%';
UPDATE /*$wgDBprefix*/site_stats SET ss_
www.eeworm.com/read/218586/4857480
sql changeuser.sql
set @oldname = 'At18';
set @newname = 'Alfio';
update low_priority /*$wgDBprefix*/user set user_name=@newname where user_name=@oldname;
update low_priority /*$wgDBprefix*/user_newtalk set user_ip=@n