1樓:紅樓花霧
這個sql語句包含了兩個實現內容 即就是查詢和修改 貌似寫的有點小問題,建議將它們分開操作 即:
select * from accounts where name='admin'
update accounts set admin='50' where name="admin" //將更新的表的列名補全然後根據姓名(name)進行更改
2樓:匿名使用者
應該換成2行寫
update accounts set admin=「50」 where name="admin"
select * from accounts where name=「50」
3樓:
sql一個查詢和修改不能連在一起做的。
而且sql也這個"admin" 肯定出錯的,字元型只能用單引號,不能雙引號,在你的update 的語句裡,有個條件是'admin'='admin' 這個也有問題,這是個恆等句,所以你的update 語句裡這個地方多餘。
只有分開寫了
select * from accounts where name='admin'
update accounts set admin='50' where name='admin'
SQL語句問題,SQL語句問題
兩種寫法 select b.b id a.id as a id a.o money a.n money as abc from a,b where b.a id a.id select b.b id a.id as a id a.o money a.n money as abc from b lef...
sql語句sql語句怎樣新增使用者
sql語句沒有新增使用者一說,但可以建立使用者。以oracle為例,建立使用者的語法為 create user 使用者名稱 identified by 密碼 說明 使用者名稱應為英文字母 不區分大小寫 密碼則應為數字或字母 區分大小寫 或英文字元或它們的組合。在建立後需要給使用者賦予一些許可權,才可...
SQL語句的問題,SQL語句的問題
用聯接。假設資料庫名為test,列1為a,列2為b,排序欄位為id。下列語句可查出所有b列與其他行的a列相同的記錄 select t1.a,t1.b from test t1 join test t2 on t1.b t2.a where t1.a t2.a 下列語句可查出第5行是否存在b列與其他行...