--CREATE database Db_std_mgr_sys; UseDb_std_mgr_sys;Create TableStudent (std_idbigint not NULLAuto_increment,std_namevarchar(Ten) not NULL default "', Std_codevarchar( -) not NULL default "'Comment'study number, the value is unique', Std_sexvarchar(8) not NULL default "', Std_phonevarchar( -) not NULL default "', school_idbigint not NULL default -1Comment'Your School ID', grade_idBIGINT not NULL default
Create an Access table dynamically with SQL statements for the following generations!
nowtime = now() tablename = cstr(year(nowtime))+"_"+cstr(second(nowtime)) response.write tablename db_path = "test.mdb" Set conn= Server.CreateObject("ADODB.Connection") connstr = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source="Server.MapPath(db_path) conn.Open connstr Set rs
Tags: har use int rom base data table date Multicolumn--Create a databaseCreate DATABASE hq20161114Go
--Using the databaseUse hq20161114Go
--Create student tablesCREATE TABLE Xuesheng(code int,Name varchar (10),Sex char (10),Chengji Decimal (18,2))
--Add student informationINSERT into Xuesheng v
1 ALTER FUNCTION [dbo].[fnt_splitstring]2 (3 @p1 varchar(Max),4 @p3 varchar(255)5 )6 RETURNS 7 @Table_Var TABLE 8 (9C1varchar(Max)Ten ) One as A BEGIN - Declare @p2 varchar(Max) - Set @p2=RTrim(LTrim(@p1)) the Declare @pos1 int - Declare @pos2 int - Set @pos1=1 - Set @pos2=1 + while(@pos1Len(@p2)) - begin + Set @pos1=charindex(@p3,@p2) A if(@pos1=0) at begin - Insert into @
Tags: http io ar os using for strong on dataAuthor: GW? Reprint annotated Source??The SQL statement creates the table format:? CREATE table?? ( ??? [,? [,? );??--above is the format of the table if you do not understand it is recommended to search the following regular expre
This article is an example of using SQL command to create a table in VFP. The format for creating a table structure with SQL commands is as follows:
CREATE TABLE
, integer field. Example: Userage int
float, floating-point data is approximate. Example: Userresults float, the approximate numeric data type used to represent floating-point numeric data.
datetime, Date type. Example: Createdatetime datetime
Bit, Boolean type. Can be set to True is male, false is schoolgirl
If the content is very much, indeterminate length (such as article), can be used: nvarchar (max)6. Save the table:* If you want
Tags: strong IDT Electronics Top course creat DEP information varThere is a database comprising four tables: Student table (Student), Course table (Course), score table (score) and teacher Information sheet (Teacher). The structure of the four tables, as shown in table 1-1 (i) to t
SQL Server Temp Table create query Delete
CREATE TABLE Temptablename
(
ID int identity (1,1) not NULL,
A1 varchar (50),
A2 varchar (50),
A3 varchar (50),
Primary key (ID)--defines a primary key with an ID of temporary t
Common scenario: Delete related tables and regenerate.1. Inconsistent data engine inconsistency between related tables results in:Modify the engine settings for the related table and keep it consistent.2. The reference type of the associated table index field is different (for example, the A Table association field is a int,b
The table-valued parameter is a new parameter type in SQL Server 2008. Table-valued parameters are declared using a user-defined table type. With table-valued parameters, you can send multiple rows of data to a Transact-
Tags: sel over l database query sort name Statement data rankNow there is a table as followsId Name Age classify score1 1181 Class 122 2,172 class 193 3,193 Class 30I'm going to rank them according to their scores. Create a new column store sort valuesThe->sql statement is as followsSelect Row_number () over (order by score ASC) as Number,id,name,age,classify,sco
Tags: io for ar art CTI on EF C SQLIn SQL Server, trigger, INSERT, UPDATE, delete state:CREATE TRIGGER t_inms_alarmsOn [PHS]. [dbo]. [Alarmcurrent]For INSERT, DELETEAsDECLARE @rows intSELECT @rows = @ @rowcountIF @rows = 0Return--If the table is inserted, synchronize the update alarmsmiddletblIF EXISTS (select 1 from inserted) and not EXISTS (select 1 from deleted)BEGININSERT into [PHS]. [dbo]. [ALARMSMIDDL
1. Create a new tableCREATE TABLEYsb_log (ID Number(8)Primary Key not NULL, Tbdatevarchar( -)NULL, Tb_timevarchar( -) not NULL, Tblogvarchar( -) not NULL, Tbreorvarchar2( -)NULL, BSvarchar( -) not NULL );In Oracle, sequence is the so-called serial number, which is automatically incremented each time it is taken, and is typically used where serial numbers need to be sorted.2. Create a self-incrementCreate
-- Delete Table----------------------------------------------------------------------------------To add a constraint:ALTER TABLE Table name ADD CONSTRAINT constraint name constraint type specific constraint description1. The naming rules for constraint names are recommended in the form of constraint type _ constraint name.----------------------------
temporary objects and temporary objects such as temporary stored procedures and temporary functions, temporary objects are stored in tempdb. Temporary tables with a prefix of # are local, so they can only be accessed in the current user session, while temporary tables with a prefix of # are global, so all user sessions can be accessed. A temporary table uses sessions as the boundary. As long as the session for creating a temporary
The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion;
products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the
content of the page makes you feel confusing, please write us an email, we will handle the problem
within 5 days after receiving your email.
If you find any instances of plagiarism from the community, please send an email to:
info-contact@alibabacloud.com
and provide relevant evidence. A staff member will contact you within 5 working days.