sqlite dinstinc问题
为什么用select name,distinct phone from phone_book就说语法错误,
用select distinct phone,name from phone_book就可以?
没有为什么 distinct 是 select 的修饰符,只能在 select 后直接写 distinct
如果我想得到的结果是name不重复或phone不重复该怎么办?难道不支持?
没看明白,建议你举例说明。
相关问答:
string ConStr="data source=C:\ceshi.db;verson=3;password=123456";
SQLiteConnection MyConnection = new SQLiteConnection(ConStr);
try
{ ......
SqlServer中这样统计:
select name from sysobjects where xtype='U'
要知道总数的话就简单了:
select count(*) from sysobjects where xtype='U'
Oracle中这样查询:
Sele ......
XML code:
<?xml version="1.0" encoding="utf-8"?>
<mx:WindowedApplication xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">
<mx ......
目前在公司的linux pc上有一个SQLite server, 我想用在同个区網底下的win pc去连接SQLite server用ASP進行操作, 请问有办法办到吗? 还是SQLite server无法支持网络连接....找了一个下午
剛 ......