
1、可通过多种方法从易语言Excel导入数据。需要安装SQLServerManagementStudio(SSMS)才能使用其中一些工具。
2、首先导出到文本(SQLServer和SQL数据库);
3、直接从易语言Excel(仅本地SQLServer)进行就可以直接导入了。通过查询百度得知。MicrosoftExcel是Microsoft为使用Windows和AppleMacintosh *** 作系统的电脑编写的一款电子表格软件。
说明:几个简单的基本的sql语句
选择:select * from table1 where Id=1(Id=1为条件语句,根据自己情况自定义)
插入:insert into table1(field1,field2) values(value1,value2)
删除:delete from table1 where 范围
更新:update table1 set field1=value1 where 范围
查找:select * from table1 where field1 like ’%value1%’
欢迎分享,转载请注明来源:内存溢出
微信扫一扫
支付宝扫一扫
评论列表(0条)