ng somerang
n=7,t/12,z=4 ng ng ng thot
6.0 ng somerang
n=8,t/12,z=4 ng ng ng thot
2.0 ng somerang
n=9,t/12,z=4 ng ng ng thot
1.0 ng somerang
But when I try to run it, it didn't work.
Can you help me?
A:
it may be due to misplaced parens as the syntax for join is like:
from t in tq
join t2 in tq on t.id equals t2.id
select t.id, t.t/12, t2.id
so basically it means:
from t in tq join
t2 in tq
on t.id equals t2.id
when using join on more than one from it would be better to use explicit join syntax like so:
Your query needs to be written differently in order to achieve what you want. There is a keyword "join" which does not require brackets. So you can write something like this:
t.t/12 from t in tq
join t2 in tq
on t.id equals t2.id
select t.id, t.t/12, t2.id;
// Copyright 2009 the Sputnik authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/**
* @name: S15.10.4.11_A3_T4;
* @section: 15.10.4.11;
* @assertion: The Date.prototype property "getDate" has { ReadOnly, DontDelete, DontEnum } attributes;
* @description: Checking DontDelete attribute;
*/
if (delete Date.prototype.getDate === false) {
Related links:
Comments