验证SQL保留字 2022年1月23日 20:36 • 数据库 • 阅读 50 <HTML> <HEAD><TITLE>验证SQL保留字</TITLE> <SCRIPT LANGUAGE="VBScript"> <!-- function keyword(str) x="action,add,aggregate,all,alter,after,and,as,asc,avg,avg_row_length,auto_increment,between,bigint,bit,binary,blob,bool,both,by,cascade,case,char,character,change,check,checksum,column,columns,comment,constraint,create,cross,current_date,current_time,current_timestamp,data,database,databases,date,datetime,day,day_hour,day_minute,day_second,dayofmonth,dayofweek,dayofyear,dec,decimal,default,delayed,delay_key_write,delete,desc,describe,distinct,distinctrow,double,drop,end,else,escape,escaped,enclosed,enum,explain,exists,fields,file,first,float,float4,float8,flush,foreign,from,for,full,function,global,grant,grants,group,having,heap,high_priority,hour,hour_minute,hour_second,hosts,identified,ignore,in,index,infile,inner,insert,insert_id,int,integer,interval,int1,int2,int3,int4,int8,into,if,is,isam,join,key,keys,kill,last_insert_id,leading,left,length,like,lines,limit,load,local,lock,logs,long,longblob,longtext,low_priority,max,max_rows,match,mediumblob,mediumtext,mediumint,middleint,min_rows,minute,minute_second,modify,month,monthname,myisam,natural,numeric,no,not,null,on,optimize,option,optionally,or,order,outer,outfile,pack_keys,partial,password,precision,primary,procedure,process,processlist,privileges,read,real,references,reload,regexp,rename,replace,restrict,returns,revoke,rlike,row,rows,second,select,set,show,shutdown,smallint,soname,sql_big_tables,sql_big_selects,sql_low_priority_updates,sql_log_off,sql_log_update,sql_select_limit,sql_small_result,sql_big_result,sql_warnings,straight_join,starting,status,string,table,tables,temporary,terminated,text,then,time,timestamp,tinyblob,tinytext,tinyint,trailing,to,type,use,using,unique,unlock,unsigned,update,usage,values,varchar,variables,varying,varbinary,with,write,when,where,year,year_month,zerofill" y=split(x,",") for i=0 to ubound(y) if str=y(i) then keyword=y(i)&"属于保留字" exit for else keyword=str&"不属于保留字" end if next ERASE y msgbox(keyword) end function Sub Button1_OnClick Dim TheForm Set TheForm = Document.ValidForm If len(trim(TheForm.Text1.Value))<=0 Then MsgBox "请输入" Else keyword(TheForm.Text1.Value) End If End Sub --> </SCRIPT> </HEAD> <BODY> <H3>SQL保留字验证</H3><HR> <FORM NAME="ValidForm"> 请输入保留字: <INPUT NAME="Text1" TYPE="TEXT" size=8> <INPUT NAME="Button1" TYPE="BUTTON" VALUE="提交"> </FORM> </BODY> </HTML> [Ctrl+A 全选 注:引入外部Js需再刷新一下页面才能执行] 原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/tech/database/233335.html mssqlSQLsqlserver 赞 (0) 0 0 生成海报 微信扫码分享 SQL Server 2012 安装图解教程(附sql2012下载地址) 上一篇 2022年1月23日 20:36 精妙的SQL语句第1/2页 下一篇 2022年1月23日 20:36 相关推荐 自动备份mssql server数据库并压缩的批处理脚本 2022年1月23日 SQL查询日志 查看数据库历史查询记录的方法 2022年1月24日 一个多表查询的SQL语句 2022年1月24日 SQL语句学习 2022年1月24日 在SQL Server中使用ISNULL执行空值判断查询 2022年1月23日 SQLServer 管理常用SQL语句 2022年1月23日 sqlserver关于分页存储过程的优化【让数据库按我们的意思执行查询计划】 2022年1月23日 sql表连接查询使用方法(sql多表连接查询) 2022年1月23日 sql server学习基础之内存初探 2022年1月23日 SQL 之 SQL server 中 遇到字段的值为null 遇到的坑 2022年6月14日 发表回复 请登录后评论...登录后才能评论 提交