New answers tagged sql
0
After doing this below query we will get missing days now i want to add additional filter that is if any of the displayed dates with the below query is saturday and sunday it has to remove those date so those dates should not be displayed can anyone guide me how to extend this filter in the below query..
with date_range as (
select min(the_date) as ...
0
Firstly, let me say that I'm an Oracle person, not a MySQL person.
Secondly, I'd usually say to go for a normalised design, but I'm tempted here to think of a very unconventional alternative which I'll float out here for comment.
How about you denormalised it to the extent of using one column for all the number choices?
ticket_id integer
nums ...
0
if you have to sync with webserver check this
http://www.androidhive.info/2012/05/how-to-connect-android-with-php-mysql/
0
SQLite has no built-in mechanism for synchronizing with an external database. It is perfectly possible for you to write such a mechanism, though.
There may be some third-party solutions which can help you; have a look at Zumero, for example.
0
You can also do
SELECT MAX(DT_LOGDATE)
FROM UMS_LOGENTRY_DTL
WHERE C_INPUTMODE = 'R'
AND VC_DEVICEID = 10
GROUP BY C_INPUTMODE /* WHERE clause ensures can be max of one group*/
The GROUP BY clause makes it a vector aggregate rather than a scalar aggregate and no NULL row will be returned if there are no rows in UMS_LOGENTRY_DTL that match the ...
6
You need to use a left outer join:
SELECT c.id,c.name,count(p.id) as product_count
FROM tblcategory as c left outer join tblproduct as p on c.id=p.category_id
GROUP BY c.id,c.name
ORDER BY product_count;
The inner join only keeps records that match in both tables. You want all the product categories, even when there are no matches. The left outer ...
0
Try it like this
Model
public function get_users($limit,$offset)
{
$sql_query = "select username from valenth_user where banned=1 limit $limit,$offset";
return $this->db->query($sql_query)->result_array();
}
public function get_total_users_count()
{
$sql_query = "select username from valenth_user where banned=1 limit ...
0
Pass this XML as string to stored procedure
and get this xml string by @XML XML = null in the stored procedure
In the SP:
insert into Table(column_name)
SELECT
@Applicationo_new
,column_name = t.p.value('column_name', 'varchar(20)')
FROM @XML.nodes('pictures') t(p);
6
You could use HAVING clause:
SELECT MAX(DT_LOGDATE)
FROM UMS_LOGENTRY_DTL
WHERE C_INPUTMODE='R' and VC_DEVICEID=10
HAVING MAX(DT_LOGDATE) IS NOT NULL
0
Do the following way. I think it will be helpful..
The Controller :
public function hhh() {
$this->load->library('pagination');
$config = array();
$config['base_url'] = base_url() . '/test/hhh/';
//get the total rows
$config['total_rows'] = $this->MODEL_NAME->totalRows();
// set perpage value
$config['per_page'] = ...
1
As already mentioned, the top syntax does not do what you want.
You require a cumulative sum. Alas, this is supported directed in SQL Server 2012, but not in SQL Server 2008.
For readability, I prefer using a correlated subquery to get the cumulative sum. The rest of the query is just arithmetic:
select col1, col2, TotalCol2, CumSumCol2,
...
1
Use a derived table and filter on that:
select *
from (
select MAX(DT_LOGDATE) as max_date
from UMS_LOGENTRY_DTL
where C_INPUTMODE='R'
and VC_DEVICEID=10
) t
where max_date is not null
0
You can use your query as a subquery and add another condition:
select max_date
from
(
select MAX(DT_LOGDATE) max_date
from UMS_LOGENTRY_DTL
where C_INPUTMODE='R' and VC_DEVICEID=10
) sub
where sub.max_date is not null
0
select
a.Empname,
CASE
WHEN b.Empsalary = '' OR b.Empsalary IS NULL THEN 'NA'
ELSE b.Empsalary
END as salary
from Table 1 as a
inner join Table 2 as b on a.empcode = b.empcode
0
The correct syntax for something != NULL would be something IS NOT NULL
1
Try this one -
Query:
DECLARE @temp TABLE
(
string NVARCHAR(50)
)
INSERT INTO @temp (string)
VALUES
('003Preliminary Examination Plan'),
('Coordination005'),
('Balance1000sheet')
SELECT LEFT(subsrt, PATINDEX('%[^0-9]%', subsrt + 't') - 1)
FROM (
SELECT subsrt = SUBSTRING(string, pos, LEN(string))
FROM (
SELECT string, ...
2
Found the issue. My View was not selecting the PK column of the table and by adding the PK column of the table to the select list of the View, it produced the correct results.
2
You will need to use subquery to access alias name in select list .
The alias used in Select list bill , Net are not accessible in WHERE clause .
select sdate,bill,Net from
(
select sdate,
SUM(case when CGrp!='TOWNSHIP' and cdcode=0 and SDate between '4/1/2013' and '4/1/2013' then BillAmt end)as bill,
SUM(case when CGrp!='TOWNSHIP' and cdcode!=0 and ...
0
Are you looking for this?
And version:
SELECT
SRC.*
FROM SRC
WHERE NOT EXISTS (
SELECT TOP(1)
1
FROM (
VALUES
('xxx')
, ('yyy')
) AS KEYWORDS(Word)
WHERE SRC.col NOT LIKE '%' + Word + '%'
)
Or version:
SELECT
SRC.*
FROM SRC
WHERE EXISTS (
SELECT TOP(1)
1
FROM (
...
0
Did you want this?
SELECT * FROM TABLE
WHERE x.Keywords in (Select * FROM ListOfWantedKeywords) --The list of wanted keywords is your dynamic search.
0
Try this :
create table course (courses varchar(100))
insert into course values('1|2')
insert into course values('1|2|3')
insert into course values('1|2|8')
insert into course values('10')
insert into course values('11')
insert into course values('11|12')
Declare @col varchar(200)
SELECT
@col=(
SELECT DISTINCT c.courses + '|'
FROM ...
0
Please try:
declare @var nvarchar(max)='Balance1000sheet'
SELECT LEFT(Val,PATINDEX('%[^0-9]%', Val+'a')-1) from(
SELECT SUBSTRING(@var, PATINDEX('%[0-9]%', @var), LEN(@var)) Val
)x
0
select mobileNumber, max(yearmonth)
from tablename
group by mobileNumber
3
SELECT *
FROM (
SELECT *,
ROW_NUMBER() OVER (PARTITION BY mobileNumber ORDER BY year DESC, month DESC, recordId DESC) rn
FROM mytable
) q
WHERE rn = 1
0
First create this UDF
CREATE FUNCTION dbo.udf_GetNumeric
(@strAlphaNumeric VARCHAR(256))
RETURNS VARCHAR(256)
AS
BEGIN
DECLARE @intAlpha INT
SET @intAlpha = PATINDEX('%[^0-9]%', @strAlphaNumeric)
BEGIN
WHILE @intAlpha > 0
BEGIN
SET @strAlphaNumeric = STUFF(@strAlphaNumeric, @intAlpha, 1, '' )
SET @intAlpha = PATINDEX('%[^0-9]%', @strAlphaNumeric )
END
...
0
Well with linq that would be something like (assuming you have a model class called Products) and the user has send an array of keywords
IQueryable<Product> SearchProducts (params string[] keywords)
{
IQueryable<Product> query = dataContext.Products;
foreach (string keyword in keywords)
{
string temp = keyword;
query = query.Where (p ...
1
SELECT t.*,
COALESCE(Monday, 0) +
COALESCE(Tuesday, 0) +
COALESCE(Wednesday, 0) +
COALESCE(Thursday, 0) +
COALESCE(Friday, 0) AS total
FROM mytable t
1
You can do a search with an OR operators or an equivalent IN (...) expression, group the rows by the item column, and compare row counts. The row with the highest count has the highest number of keywords from your search list:
SELECT TOP 1
column1, COUNT(*)
FROM mytable
WHERE column2 IN ('tag1', 'tag3')
GROUP BY column1
ORDER BY COUNT(*) DESC
To deal ...
0
you can test following query also -
I have checked the execution plan for your posted query and the following query and I am getting good difference between both -
SELECT t_1.Id, t_2.Cnt
FROM Assets t_1,
(SELECT Initlcn, COUNT(*) Cnt FROM Assets GROUP BY Initlcn) t_2
WHERE t_1.Lcn = t_2.Initlcn
1
Try these three alternatives:
1. ISNULL(MyColumn, 0)
2. SELECT CASE WHEN MyColumn IS NULL THEN 0 ELSE MyColumn END FROM MyTable
3. SELECT COALESCE(MyCoumn, 0) FROM MyTable
There is another way but it is not supported by most of the databases
SELECT MyColumn + 0
This might work, but NULL + anything is still NULL in T-SQL.
1
Convert your northings/eastings to lat/long, remembering that The OS grid is based on OSGB36 rather than WGS84.
I use the following class:
class convertor
{
private $_osRef;
private $_fromDatum;
private $_toDatum;
public function __construct()
{
$this->_osRef = new OSRef();
$this->_fromDatum = new ...
0
Try this one -
SET NOCOUNT ON;
DECLARE @temp TABLE
(
string VARCHAR(500)
)
DECLARE @Separator CHAR(1)
SELECT @Separator = '|'
INSERT INTO @temp (string)
VALUES
('1|2'),
('1|2|3'),
('1|2|8'),
('10'),
('11'),
('11|12')
-- 1. XML
SELECT p.value('(./s)[1]', 'VARCHAR(500)')
FROM (
SELECT field = CAST('<r><s>' + ...
2
You could use this:
SELECT Ename , Eid , ISNULL(Eprice, 0), Ecountry from Etable
Where Ecountry = 'India'
2
Try ISNULL(Eprice, 0) instead of Eprice
3
Use coalesce():
select coalesce(Eprice, 0) as Eprice
In SQL Server only, you can save two characters with isnull():
select isnull(Eprice, 0) as Eprice
0
One way would be to use a recursive CTE:
with cte as
(select cast(case charindex('|',courses) when 0 then courses
else left(courses,charindex('|',courses)-1) end as int) course,
case charindex('|',courses) when 0 then ''
else right(courses,len(courses)-charindex('|',courses)) end courses
from courses
union all
...
0
To put it simply, what we really want to do here is to add the new tuples to the table, and then compare this new table to the old one using the matrix transpose operation you mentioned above. What you would need is to 'mark' these new keywords so that you could use them for a conditional in your query. So this
SELECT b.docid, b.term, SUM(a.count * b.count) ...
1
A version with plain SQL subquery
SELECT s.*,
(SELECT SUM(Amount) FROM Sample WHERE Project = s.Project) ProjectAmount
FROM Sample s
ORDER BY ProjectAmount DESC
SQLFiddle
0
you can use following query -
SELECT *
FROM Table1, Table2
WHERE Table1.T2id = Table2.Id
AND Table1.T2id IS NOT NULL
UNION
SELECT Table1.*, NULL, NULL FROM Table1 WHERE Table1.T2id IS NULL
3
select *
, sum(amount) over (partition by project) as ProjAmount
, row_number() over
from YourTable
order by
ProjAmount desc
Example at SQL Fiddle.
To select only the top two projects with the highest amounts, you could use dense_rank:
select *
from (
select *
, dense_rank() over (order by ProjAmount ...
0
Making a lot of assumptions here, but this gives the required result for your demo data:
SELECT Child,
Min(Parent)
FROM #temp
GROUP BY Child
0
Use , to separate the string and try this query
select * from promotion_table where FIND_IN_SET("23",bungalow_ids)
http://sqlfiddle.com/#!2/7bbcb/1
0
The previous Answer is the right decision but if you insist in your model.
Probably what you want to do is:
SELECT *
FROM Promotion_Table
WHERE bungalow_ids = '23'
OR bungalow_ids LIKE '23,*'
OR bungalow_ids LIKE '*,23'
OR bungalow_ids LIKE '*,23,*'
this assuming the numbers are separated by ",".
But this is the wrong way, make the changes ...
0
Could not manage without recursion :( Something like this could do the trich?
WITH splitNum(num, r)
AS
(
SELECT
SUBSTRING(<field>,1, CHARINDEX('|', <field>)-1) num,
SUBSTRING(<field>,CHARINDEX('|', <field>)+1, len(<field>)) r
FROM <yourtable> as a
UNION ALL
SELECT
SUBSTRING(r,1, CHARINDEX('|', r)-1) num,
...
2
Please try:
declare @tbl as table(Courses nvarchar(max))
insert into @tbl values
('1|2'),
('1|2|3'),
('1|2|8'),
('10'),
('11'),
('11|12')
select * from @tbl
SELECT
DISTINCT CAST(Split.a.value('.', 'VARCHAR(100)') AS INT) AS CVS
FROM
(
SELECT CAST ('<M>' + REPLACE(Courses, '|', '</M><M>') + '</M>' AS XML) AS CVS
...
0
maybe two table join is not nesecerry .
try this
select
a.id
,b.cnt
from assets a
join (
select
initlcn
count(1) cnt
from assets
group by initlcn
)
b on (a.lcn=b.initlcn)
0
select
t1.ID,
t1.LCN,
COUNT(*)
from
Table1 t1
INNER JOIN Table1 t2 ON t1.LCN = t2.INITLCN
GROUP BY t1.LCN
See it working live in an sqlfiddle.
0
it is possible to create WA (structure) dynamically with RTTC (Run Time Type Creation),
here you can find an example: https://wiki.sdn.sap.com/wiki/display/Snippets/Add+a+column+to+an+internal+table+dynamically
Kris
0
you need to reformat your DB schema.
you need to construct 2 tables one for promotions and one for bangalows.
like so:
promotions : Promotion_id(int),Promotion_desc
bangalows: Bangalow_id(int),Promotion_id(int)
tables example:
promotion :
1 myPromotion
2 secondPromotion
bangalows:
1 1
2 2
3 1
4 1
if you do that ...
Top 50 recent answers are included






